Re: [Tinyos-help] Application of dynamic address allocation

2007-08-12 Thread Itamar Amsili
Hi Jacob, I'm looking for a DHCP-style application, but much simple, which means assigning a 2-byte address(the TOS_NODE_ID in tinyos 2.x) to a node who is joining a network. if there is no network in the reception area, the node will assign to itself the default=1, and will continue searching

Re: [Tinyos-help] A suggestion for all posters

2007-08-12 Thread Bernardo Avila Pires
Nice... Platform: MacOS X (Tiger) TinyOS version: 2.x Programmer: MIB400 Device(s): Mica2, MicaZ Sensor board: MTS 300, MTS310 Btw, I have written a short tutorial on tinyos, basically covering the problems I had when trying to set up a wsn. Can I post the link here so as to submit it to

Re: [Tinyos-help] A suggestion for all posters

2007-08-12 Thread Bernardo Avila Pires
MIB600, I mean. 2007/8/12, Bernardo Avila Pires [EMAIL PROTECTED]: Nice... Platform: MacOS X (Tiger) TinyOS version: 2.x Programmer: MIB400 Device(s): Mica2, MicaZ Sensor board: MTS 300, MTS310 Btw, I have written a short tutorial on tinyos, basically covering the problems I had when

Re: [Tinyos-help] A suggestion for all posters

2007-08-12 Thread Michael Schippling
There, see, we're already off on the wrong foot... Please post a like to your doc, I'd like to see it. MS Bernardo Avila Pires wrote: MIB600, I mean. 2007/8/12, Bernardo Avila Pires [EMAIL PROTECTED]: Nice... Platform: MacOS X (Tiger) TinyOS version: 2.x Programmer: MIB400 Device(s): Mica2,

[Tinyos-help] MUTLIHOPPING

2007-08-12 Thread n subhash
HI please guide me how to make motes communicate in specific path even though it is not optimal path using multihopping please send me a sample code thanks in advance ___ Tinyos-help mailing list Tinyos-help@Millennium.Berkeley.EDU

[Tinyos-help] Fwd: MUTLIHOPPING

2007-08-12 Thread n subhash
HI please guide me how to make motes communicate in specific path even though it is not optimal path using multihopping please send me a sample code i'm using mica2 motes thanks in advance ___ Tinyos-help mailing list

[Tinyos-help] My tiny tutorial

2007-08-12 Thread Bernardo Avila Pires
Greetings! I have recently written a tutorial, putting together some of the experience I gathered while trying to set up a WSN. I tried not to repeat what can be easily found. I would much appreciate all help and feedback, so as to improve the material to a level I consider satisfactory.

[Tinyos-help] cc2420 RF power

2007-08-12 Thread roberto pagliari
the cc2420 allows different RF output power levels. The default value is set to (1 CC2420_TXCTRL_PADIFF) | (0x1f CC2420_TXCTRL_PAPWR)); I'm wondering to know to which value that correspond to, since I didn't find it in the datasheet. Also, the possible values are 31 27 23 19 15 11 7 3 what

re: [Tinyos-help] How to stop or disable radio listening?

2007-08-12 Thread Daniel Widyanto
Hi, Stop the radio. module { interface SplitControl as RadioControl; . } implementation { task stopRadio() { call RadioControl.stop(); } event void RadioControl.stopDone(error_t error) { // Radio is stopped } } Regards, -daniel Original

[Tinyos-help] ACK in broadcast for CC2420LPL????

2007-08-12 Thread Ravi Prasad
Hi, Can anybody comment on how does ACK mechanism work if a packet is broadcasted rather then Unicasted? CC2420LPL waits for ACK after sending a packet. After receiving ACK it goes to sleep again. In Unicast mode it can wait for ACK from the destination specified in the sent packet. But what

Re: [Tinyos-help] Seek simulator that can simulate interrupts.

2007-08-12 Thread John Regehr
Is there simulator that can simulate the preemptive effects of interrupts on top of TinyOS model and nesC language? Thanks! http://compilers.cs.ucla.edu/avrora/ John Regehr ___ Tinyos-help mailing list Tinyos-help@Millennium.Berkeley.EDU

[Tinyos-help] A question on sync/async code

2007-08-12 Thread Bin Lei
In the user manual, AC is defined as code is reachable from at least one interrrupt handler; while SC is code only reachable from tasks. But there are many event handler that are not tagged using async, are they async or sync? e.g. in Blink example, three timer could fire simultaneously

Re: [Tinyos-help] concurrency issue

2007-08-12 Thread John Regehr
In tinyOS 2: suppose at the time when the scheduler is executing one interrupt handler, a new interrupt comes, then what will happen? Will the new interrupt be dropped? Are there any documents about the tinyos 2 scheduler in detail? The answer is that this has nothing to do with TinyOS and