Re: [Tinyos-help] Receiving Delta Messages

2006-11-27 Thread Joe Polastre
ct: Re: [Tinyos-help] Receiving Delta Messages Hi Tim, The neighbor lists are intended for routing; once a base station comes into view, the rest of the nodes will gradually adopt it and increase their estimates. This will let you know if someone in the network is connected to a base station, bu

Re: [Tinyos-help] Receiving Delta Messages

2006-10-24 Thread Joe Polastre
Multihop is for forwarding messages up a multihop tree, it is not for dissemination down the tree. Thus, there is no "Receive" interface, because the destination is the base station. Multihop does provide "Snoop" and "Intercept" which allow you to monitor messages as they traverse the tree towar

RE: [Tinyos-help] Receiving Delta Messages

2006-10-23 Thread Tim Spargo
Data component level. Is there any documentation which describes how this is done? Any other details would be helpful. Thanks, Tim -Original Message- From: KANG HUI [mailto:[EMAIL PROTECTED] Sent: October 16, 2006 12:41 AM To: Tim Spargo Cc: tinyos-help@Millennium.Berkeley.EDU Subject: Re: [Ti

Re: [Tinyos-help] Receiving Delta Messages

2006-10-15 Thread KANG HUI
>From the code in MultihopDataM.nc, we can note that this component does provide DataM.receiveMsg to handle unicast particular message. It is implemented in Line 399 in MultiHopDataM.nc. Hui On Sun, 15 Oct 2006, Tim Spargo wrote: > Hi, > > I am using Tmote sky mote with Delta application (which

[Tinyos-help] Receiving Delta Messages

2006-10-15 Thread Tim Spargo
Hi, I am using Tmote sky mote with Delta application (which uses Multihop). Could someone please point me to a basic Application/code snippet which receives messages? Please include any event handler code. I would like to send messages from the base stn. to a paricular mode in the Network. >From