[Tinyos-help] Forwarding Message to base station from Mesh network

2010-10-31 Thread ¯`•._.•Lance•._.•´¯
Hi all, I would like to forward msg for one node to another finally back to the station without changing any msg information. What interface should i use is there any ready make program for that ..thanks in advance regards, steve ___ Tinyos-help

[Tinyos-help] Forwarding Message Pls help

2010-10-31 Thread ¯`•._.•Lance•._.•´¯
Hi, It's always a good idea to send a copy to the forum so that others can contribute. Also, somebody else might have a similar problem and would be glad to see what we have been discussing. For multihop communication, I strongly recommend to start with the Collection protocol, as everything

[Tinyos-help] Forwarding Message

2010-10-23 Thread ¯`•._.•Lance•._.•´¯
For multihop communication, I strongly recommend to start with the Collection protocol, as everything you need there is already implemented: http://docs.tinyos.net/index.php/Network_Protocols#Collection Basically, instead of the regular send/receive interfaces you send your packets over the

Re: [Tinyos-help] Forwarding Message

2010-10-22 Thread Omprakash Gnawali
On Mon, Oct 18, 2010 at 10:15 AM, Urs Hunkeler urs.hunke...@epfl.ch wrote: On the relay nodes you just need to increment the hop count for each message. You can intercept messages before they are forwarded. To do this you'll have to implement the Intercept interface. The code could look

Re: [Tinyos-help] Forwarding Message

2010-10-18 Thread Urs Hunkeler
Hi, It's always a good idea to send a copy to the forum so that others can contribute. Also, somebody else might have a similar problem and would be glad to see what we have been discussing. For multihop communication, I strongly recommend to start with the Collection protocol, as

Re: [Tinyos-help] Forwarding Message

2010-10-17 Thread Urs Hunkeler
Hi Lance, I'm not sure what your question is. What kind of mesh networking protocol are you using? Some protocols are described in the tutorials: http://docs.tinyos.net/index.php/TinyOS_Tutorials#Network_Protocols You seem to use (or want to use) something similar to the Collection protocol:

[Tinyos-help] Forwarding Message

2010-10-16 Thread ¯`•._.•Lance•._.•´¯
hi all, I am currently working on a wsn ( Micaz) project.I encountered some issues .The issue is that i want to forward message( hop count that i received from the target in the mesh network ) back to the base station but in between there will be some relay nodes. . Is there anyone can