[Tinyos-help] want to use multiple timer modules........... how....:)

2006-10-12 Thread primalfear 69
hello everybody.. my application requires two seperate timer modules to be used. the basic idea is only one should be alive at a given time interval... and corresponding event has to be performed. how can i do that in nesC... as of now its all Timer.start and

Re: [Tinyos-help] want to use multiple timer modules........... how....:)

2006-10-12 Thread Tony Han
You can have two instances of timer, say timer1 and timer2, then in timer1.fire, you do whatever you want plus call timer2.stop, and in timer2.fire, you kill timer1. TonyOn 10/12/06, primalfear 69 [EMAIL PROTECTED] wrote: hello everybody.. my application requires two seperate timer