[Tinyos-help] Badly needing help for tinyDB

2006-06-01 Thread prajakta choudhari
Dear all: Thank You so much for u r previous responses.. They have helped me so much Now i am trying to run TinyDb for MTS420. This is the makefile for TinyDBApp. COMPONENT=TinyDBApp SENSORBOARD=mts400 PFLAGS=-I %T/lib/Util -I%T/lib/Attributes -I%T/lib/Commands -I%T/lib/TinyDB

Re: [Tinyos-help] GlobalTime in Tmote from Moteiv

2006-06-01 Thread Joe Polastre
if (call GlobalTime.isValid()) { call GlobalTime.get(); } -Joe On 5/31/06, Jörgen Johansson [EMAIL PROTECTED] wrote: Can you explain with an example how I can use the Globaltime in the Delta example in Bomerang 2.0.2 ? /Jörgen Johansson -Ursprungligt meddelande- Från: [EMAIL

SV: [Tinyos-help] GlobalTime in Tmote from Moteiv

2006-06-01 Thread Jörgen Johansson
How synchronized (us) is GlobalTime in different nodes? Is it possible to get an event e.g. once a second from GlobalTime? /Jörgen Johansson -Ursprungligt meddelande- Från: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] För Joe Polastre Skickat: den 1 juni 2006 13:32 Till: Jörgen Johansson

[Tinyos-help] How does time field work?TOS_Msg

2006-06-01 Thread Munaretto, Daniel
In AM.h i found TOS_Msg that i'm using. If i display time field in my simulations on TinyViz, it's strange, it assumes meaningless values. Does someone know how it works? Thanks for your availability Daniele PS my purpose is to have a statistic about delay, so time when a mote send

[Tinyos-help] random number

2006-06-01 Thread Tony L
Hi, I want to get a sequence of random number and I use RandomLFSR. Because it use TOS_LOCAL_ADDRESS as the seed, I get the same sequence of random number every time. Is there any one know how to change the seed to get a sequence of 'real' random number? Best regards, Tony

[Tinyos-help] Timer 32 khz

2006-06-01 Thread giovanni gamba
Hi, i'm working with Tmote Sky. I need to use a timer that provides interface timer232 Khz or any other timer that runs at 32 khz. What can i use? Please help me... it's urgent. Thank you all ___ Tinyos-help mailing list

Re: [Tinyos-help] Question about I2C

2006-06-01 Thread Matthew J Whelan
Jose,You can communicate through I2C with external devices using Tinyos 1.x. Take a look at tos/platforms/MSP430/MSP430I2CPacket and tos/platforms/telosb/I2CPacketC I2CPacketM. Make sure you take care to arbitrate the bus, since the radio chip is on the same USART.Regards,Matt[EMAIL PROTECTED]

[Tinyos-help] A Timer Interval of Zero

2006-06-01 Thread Adesola Omotayo
Hello, After allowing my network topology to stabilize (i.e. parent child relationships have been established), I want to stop the automatic update of the NeighborTbl in MultiHopLEPSM. I issued the following statement with the purpose of causing the timer never to fire again: call

Re: [Tinyos-help] Question about I2C

2006-06-01 Thread jose . ulloa . suarez
Even though I've reviewed those archives, but I have the following doubt. In the MSP430I2CC.nc file contained the primitives for setting the operation modes. Start is generated by the I2CPacket component, whenever read or write is made. In the StdControl.start a call to USARTControl.setModeI2C

Re: [Tinyos-help] Question about I2C

2006-06-01 Thread Matthew J Whelan
Jose,Sorry, It didn't register the first time I read your question that you are wanting to use the Tmote as a slave device. If I were you, Iwould forget about using any of the components or interfaces available, except for reference. I would recommend taking a look at chapter 15 of the MSP430

[Tinyos-help] FW: Problem with UART0 in TMoteSky

2006-06-01 Thread Adam
Hi, I am testing send/receive messages through UART0 in TMote Sky, following the example in Moteiv website. The setup is following: Connect UART0 and convert it to a serial port, which is connected to my PC serial port COM13. If I never release the resource, the Pcomm Terminal Emulator (P.S.

[Tinyos-help] problems with nesc-topdir option

2006-06-01 Thread Daniel Villón
Hi everyone,I just had the weirdest problem... I have just move all my work from my job PC to my home PC which have a diferent user name. When I tryed to do the make docs sentence I had this error which seems to be a problem of having a space in my user name. I have tryed to change the name of

Re: [Tinyos-help] problems with nesc-topdir option

2006-06-01 Thread David Gay
On 6/1/06, Daniel Villón [EMAIL PROTECTED] wrote: I just had the weirdest problem... I have just move all my work from my job PC to my home PC which have a diferent user name. When I tryed to do the make docs sentence I had this error which seems to be a problem of having a space in my user

Re: [Tinyos-help] problems with nesc-topdir option

2006-06-01 Thread Daniel Villón
Now I know it gives problems... anyway I couldn't do anything because it takes mi user name from my windows instalation and now I can't change it... the thing is, what can I do?On 6/1/06, David Gay [EMAIL PROTECTED] wrote: On 6/1/06, Daniel Villón [EMAIL PROTECTED] wrote: I just had the weirdest

[Tinyos-help] Is this a bug in Moteiv Boomerang MultiHop?

2006-06-01 Thread Adam
In selectParent() function of MultihopLQIM.nc, is the following line a bug? if (parents[i].cost + parents[i].estimate newparent) { Should newparent be parentestimate ?? === void selectParent() { int i; int newparent = m_parent; uint16_t parentestimate =

Re: [Tinyos-help] Is this a bug in Moteiv Boomerang MultiHop?

2006-06-01 Thread Joe Polastre
You are correct, thank you for pointing it out. -Joe On 6/1/06, Adam [EMAIL PROTECTED] wrote: In selectParent() function of MultihopLQIM.nc, is the following line a bug? if (parents[i].cost + parents[i].estimate newparent) { Should newparent be parentestimate ??