[Tinyos-help] OscilloscopeRf and TOSBase application with multihop

2007-04-13 Thread mehmet kaplan
Hi everyone, This is my first e-mail:) I'm starter in developing TinyOS applications. I've tried a sense application in TinyOS 1.15. I'm getting sensor values with OscilloscopeRf application and send via radio connection. I loaded TOSBase application to another mote which is connected to PC.

Re: [Tinyos-help] OscilloscopeRf and TOSBase application with multihop

2007-04-13 Thread Michael Schippling
Most likely what is happening is that you are trashing your message data in the hop mote because you return the buffer in receive() while send() is still trying to use it. You should copy the message and post send() as a task -- both good pieces of general advice. You'll eventually want to make