Re: [Tinyos-help] Interoperability in ZigBee

2013-12-07 Thread Bipin
Thank you for your reply I am little bit confused with the basic thing in TinyOS , that why asked stupid Question.. Now i understand whats it Thank you very much... -- View this message in context: http://tinyos-help.10906.n7.nabble.com/Interoperabi

Re: [Tinyos-help] Energy tracing TinyOS 2.x

2013-12-07 Thread Christian Haas
On 12/06/2013 11:00 PM, nivedita datta wrote: > Hi, > > I am using TinyOS 2.x and have written a program for AES to encrypt/decrypt > the data being sent across the nodes. I have used the Avrora to simulate > the environment. However, Avrora doesnot record the CPU cycles/energy > consumed by the e

[Tinyos-help] Help- LEACH

2013-12-07 Thread Jaydeep Scet
Hi all, i am working on key management in WSN and my work is on the bases LEACH protocol. so can any one send me the code for LEACH in tinyos . Thanking you . Regards Jaydeep Barad 9825574926 (ME-II) Computer Engg. ___ Tinyos-help mailing lis

[Tinyos-help] Calculate time taken for a function execution.

2013-12-07 Thread nivedita datta
I am trying to calculate the time taken by a function that I wrote. I am using the component LocalTimeMilliC to do this. I have added the following lines to the configuration file: *components LocalTimeMilliC; TestC.LocalTime -> LocalTimeMilliC;* ...and in the module section of the implementation

Re: [Tinyos-help] Calculate time taken for a function execution.

2013-12-07 Thread Roadstar Runner
I think you have the wrong format specifier argument. Try %ld instead of %f. Try using dbg("Boot", "Function took %ld millisecs\n", (ts1 - ts) ); On Sat, Dec 7, 2013 at 6:53 AM, nivedita datta wrote: > I am trying to calculate the time taken by a function that I wrote. I am > using the compone

[Tinyos-help] Call for Papers MSSN 2014

2013-12-07 Thread Dr Syed Misbahuddin
*4th International Workshop on Mobile Systems and Sensors Networks for Collaboration(MSSNC 2014)* *Call for Papers and Participation* *As part ofThe 2014 International Conference on Collaboration Technologies and Systems* *(CTS 2014)* *http://cts2014.cisedu.info* *

Re: [Tinyos-help] Calculate time taken for a function execution.

2013-12-07 Thread Eric Decker
you probably should also use LocalTimeMicroC for better resolution. I don't know how that behaves in the SIM environment... I know it works in the real world. On Sat, Dec 7, 2013 at 3:53 AM, nivedita datta wrote: > I am trying to calculate the time taken by a function that I wrote. I am > usi