[Tinyos-help] Forwarding beacons

2010-08-08 Thread Giuseppe Barbieri
I need, in a 3 nodes line net, the second node to forward a beacon from node 1 to 3 and vice versa The only problem is that the node 2, just after sent a beacon, is still busy and cannot forward the second beacon *if(!busy) {* * **dbg("ProActiveC", " Propagating the beacon forward..\n");* * **PP

Re: [Tinyos-help] Why my received signals incoherent?

2010-08-08 Thread Michael Schippling
Please, can you define "coherent signals"? What is your sample rate? If you are trying to sample sound you will get very curious results if you are below the Nyquist frequency of your signal. MS Omar Bouzid wrote: > Hi all, > > I'm using three sensor nodes (MICAz + MTS310), positioned at the s

Re: [Tinyos-help] MSP430 Telos programming problems

2010-08-08 Thread Michael Schippling
You can pass options to the GCC compiler by putting this in your makefile: CFLAGS += -S That particular option causes the compiler to stop before the assembler pass. When I tried it with a mica2 compile I got a build/mica2/main.exe file that actually contained the generated assembly code. YMMV wi