[Tinyos-help] Query - Ack in micaz not working

2006-08-09 Thread Ravi Prasad
Hi all,I am trying to use ACK at MAC layer in micaz with Tinyos1.1.15. I went through the mail archive to get information on this reagards and tried the following method to check the ACK mechanism:-Programmed one micaz with Oscilloscope modified to call MacControl.enableAck(); in stdcontrol.start.

[Tinyos-help] HPLPowerManagement Issues

2006-08-09 Thread tarun bansal
TinyOS via HPLPowerManagement relives the programmer of keeping track of hardware devices for power managament. However I want to know if there are any disadvantages of using this approach? Giving the tinyos freedom to switch off the devices may be harmful in some cases. e.g. if the programmer

Re: [Tinyos-help] HPLPowerManagement Issues

2006-08-09 Thread Ravi Prasad
The other cases where u would like to control the power management by yourself depends on what event you want to wakeup the mote. For example if you use HPLPowerManagement then the mote (I tested this on micaz motes) can wakeup on Timer event but not on a UART receive event. So if your application

Re: [Tinyos-help] Query - Ack in micaz not working

2006-08-09 Thread Krisakorn Rerkrai
Hi,Make sure that you change the destination address from TOS_BCAST_ADDR to some specific address. ACK works with a unicast message.-KrisakornOn 8/9/06, Ravi Prasad [EMAIL PROTECTED] wrote: Hi all,I am trying to use ACK at MAC layer in micaz with Tinyos1.1.15. I went through the mail archive to

[Tinyos-help] Timer debugging

2006-08-09 Thread Simon Willis
Hi everyone, I'm trying to use Timer1 as a timer for my manchester encoder on my node which is based on the mica2. I am using HPLTimer1M.nc from the micaz and have modified it slightly for my application. Basically, the timer acts as a the clock for the SPI which outputs the manchester

[Tinyos-help] how to program the MICA2.................??

2006-08-09 Thread primalfear 69
hello everybody if i want to burn sample programs given in tinyos (like BLINK etc)... i have builded it using make command. i have got it for all the platforms. i have one srec file and an exe file... couldanyone now get me how to burn the code into MICA2. is there any IDE

[Tinyos-help] tinyos tutorial's Lesson 7

2006-08-09 Thread jurin dan
hi, recently i have done successfully the exercice in the lesson 7 of tinyos tutorial. the exercice consist of adding the command tog_sounder to the existing command of SimpleCmd apps. i can compile and load the modified SimpleCmd on mica2 and all test run well.

[Tinyos-help] SenseLightToLog

2006-08-09 Thread jurin dan
hi did anybody know when dealing with senselighttolog apps how to convert the data get with the command read_log in to comprehensive data to human being? i.e read_log command print this to the screen : $ java net.tinyos.tools.BcastInject read_log 1 Sending payload: ae 6 0 0 0 1 0 0 0

[Tinyos-help] TinyOS on a Fun/Smartcard with ATmega163?

2006-08-09 Thread Sören Rinne
Hey guys,I just have a - maybe curious - question:Is it possible to run TinyOS on a smartcard? My smartcard has an ATmega163 processor. I would like to have further information (if there is any). Thanxs a lot! CheersSoeren ___ Tinyos-help mailing list

Re: [Tinyos-help] how to program the MICA2.................??

2006-08-09 Thread Zane D. Purvis
if i want to burn sample programs given in tinyos (like BLINK etc)... i have builded it using make command. i have got it for all the platforms. i have one srec file and an exe file... could anyone now get me how to burn the code into MICA2. is there any IDE for

[Tinyos-help] TinyDT plugin?

2006-08-09 Thread Justin Dugger
Hi, Has anyone successfully installed TinyDT on eclipse 3.1.2 under Linux? Or any version of eclipse? I've followed the directions and unzipped the files to /usr/share/eclipse/plugins but I'm not finding a tinyOS or tinyDT perspective. Is this the case in Windows as well? Justin Dugger

[Tinyos-help] rpm tinyos1.1.15 installation problem

2006-08-09 Thread yicheng
Hi Folks, Im trying to install rpm package tinyos-1.1.15Dec2005cvs-1.cygwin.noarch.rpm on my WindowsXP, when I run rpm --force --ignoreos -Uvh tinyos-1.1.15Dec2005cvs-1.cygwin.noarch.rpm, I get plenty of errors like these:

Re: [Tinyos-help] how to program the MICA2.................??

2006-08-09 Thread Aditya Bhave
In short,make mica2compiles the program into an executablemake mica2 install compiles the program and loads it onto the mote (ull have to edit the MakeRules file in /apps to tell the installer what port to use etc make mica2 reinstallsimply loads an existing executable onto the moteOn 8/9/06, Zane

Re: [Tinyos-help] tinyos tutorial's Lesson 7

2006-08-09 Thread Michael Schippling
Looks like you are using the basicsb sensorboard...or at least the compile time definitions for such. That board doesn't have a sound emitterIf you have cobbled a sensor board with a sound device you can try copying tos/sensorboards/micasb/Sounder* to basicsb. MS jurin dan wrote:

Re: [Tinyos-help] SenseLightToLog

2006-08-09 Thread Michael Schippling
I (you) would have to go look at the definition of the LogMsg to be sure, but it looks like a string of two byte sensor readings in Low Byte (little-endian) order. The first 0xd4 may be a sequence number or something but the rest, 0x96 0x00, 0x92 0x00, etc are probably readings like 0x0096,

Re: [Tinyos-help] rpm tinyos1.1.15 installation problem

2006-08-09 Thread Michael Schippling
Can you do a make in the offending directories, or trees? That might generate the files you need. MS yicheng wrote: Hi Folks, I’m trying to install rpm package “tinyos-1.1.15Dec2005cvs-1.cygwin.noarch.rpm” on my WindowsXP, when I run “rpm --force --ignoreos -Uvh

RE: [Tinyos-help] rpm tinyos1.1.15 installation problem

2006-08-09 Thread yicheng
Hi Michael, Yes, I did a make in that directory, and then I can build successfully, but when I do rpm installation again, I get such error again because rpm installation deletes these files first before running the build process. Thanks! Yicheng -Original Message- From: Michael

Re: [Tinyos-help] Query - Ack in micaz not working

2006-08-09 Thread Ravi Prasad
Yes I am sending to unicast address 0 which is the sink node. and it is not working.I found one other strange thing. I programmed another mote with TOSBase without enabling ack. The Oscilloscope mote is able to send the packet as the normal TOSBase is able to receive it. But TOSBase with ack is

Re: [Tinyos-help] Query - Ack in micaz not working

2006-08-09 Thread Michael Schippling
huh...it _should_ work. I do the enableAck in the init() phase, even though JoeP warned me that it should be in start(). My version is in my code bolus at: http://www.etantdonnes.com/Motes/robocode.tar.gz But it also contains TOSBase mods to pass the radio ACK back to the host over the serial