1. Not all the parameters were defined in the file, so I hope no problems there (such as boot_time) 2. The code is a bit cumbersome, so I had no patience to analyze all, BUT:
- Why don't you use nx_uint32_t variables instead of the conversions you do? - When you do lower_order_bits=time_diff&0xff - you want to use the 16 lower bits, right? So the mask you need is 0xFFFF. Arik On Tue, Apr 20, 2010 at 00:06, Kartik Siddhabathula < [email protected]> wrote: > Hi Arik, > > Please find attached the code for the local time interface that I had > written. > > Thanks in advance, > Kartik > > --- On *Mon, 4/19/10, Arik Sapojnik <[email protected]>* wrote: > > > From: Arik Sapojnik <[email protected]> > Subject: Re: [Tinyos-help] Need help with LocalTime interface > To: "Kartik Siddhabathula" <[email protected]> > Cc: "TinyoS help" <[email protected]> > Date: Monday, April 19, 2010, 3:56 PM > > Some code snippets would help > > > On Mon, Apr 19, 2010 at 19:12, Kartik Siddhabathula < > [email protected]<http://mc/[email protected]> > > wrote: > >> Hi All, >> >> I am using tinyos-2.x and telosb motes. I am using the LocalTime.get and >> storing the values in 2 variables and subtracting them. My first value is >> stored at boot up and 2nd value is on pressing the user button on telosb. >> Since the time is a 32 bit number am storing it in 32 bit variable. After >> subtracting the two values am converting the result into 16 bit variable and >> displaying it. >> >> The values that am getting are no matter how much time gap I take to press >> the button from the booting time is: >> >> 1. FFFF-F3 >> 2. FFFF-63 >> 3. FFFF-19 >> 4. FFFF-27 >> >> Can some one please help me understand it ? >> >> Thanks a lot in advance, >> Kartik >> >> >> _______________________________________________ >> Tinyos-help mailing list >> [email protected]<http://mc/[email protected]> >> https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help >> > > > > -- > Best Regards, > Arik Sapojnik > > > -- Best Regards, Arik Sapojnik
_______________________________________________ Tinyos-help mailing list [email protected] https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help
