[Tinyos-help] Low power listening

2008-03-25 Thread Flavio Pompermaier
Hi, I'm working on LowPowerListening interface to manage Radio Power. I've read the tutorial about it but it does not explain how to tune that interface. I would like to ask if someone could advice me a link to get more detailed information about that interface and, in particular, how to define

[Tinyos-help] Low Power Listening

2008-05-13 Thread Nitin Sharma
For Low Power Listening in the default Tinyos 2.x cvs stack (Box-MAC-2?) , the two interfaces as below: command void setLocalSleepInterval(uint16_t sleepIntervalMs); command void setRxSleepInterval(message_t *msg, uint16_t sleepIntervalMs); The Node (Receiver and Transmitter) would set its local

[Tinyos-help] Low Power Listening collection

2007-08-31 Thread Hristo Bojkov
Hello nesC coders, I am testing collection of data with Lpl. The application is looking like Easycollection from the tutorial. I am collecting using timer every 20 secs. I've just added few things for Lpl: 1. CFLAGS += -DLOW_POWER_LISTENING in makefile 2. LowPowerListening wired 3. LowPowerLis

Re: [Tinyos-help] Low power listening

2008-03-25 Thread David Henry
Which sources are you using? Boomerang allows you to change the duty cycle via the lowpower parameter of make. The NETSYNC_PERIOD_LOG2 macro allows you to change the time between listening periods by default NETSYNC_PERIOD_LOG2 is 16 i.e. 2**16 ticks of the 32khz clock is 2 seconds. Default low

Re: [Tinyos-help] Low Power Listening

2008-05-13 Thread Janos Sallai
Tinyos-help] Low Power Listening For Low Power Listening in the default Tinyos 2.x cvs stack (Box-MAC-2?) , the two interfaces as below: command void setLocalSleepInterval(uint16_t sleepIntervalMs); command void setRxSleepInterval(message_t *msg, uint16_t sleepIntervalMs); The Node (Receiver and

Re: [Tinyos-help] Low Power Listening

2008-05-13 Thread David Moss
ended destination. -David -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nitin Sharma Sent: Tuesday, May 13, 2008 11:08 AM To: tinyos-help@millennium.berkeley.edu Subject: [Tinyos-help] Low Power Listening For Low Power Listening in the default Tinyo

Re: [Tinyos-help] Low Power Listening

2008-05-13 Thread Nitin Sharma
From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Nitin > Sharma > > Sent: Tuesday, May 13, 2008 11:08 AM > To: tinyos-help@millennium.berkeley.edu > Subject: [Tinyos-help] Low Power Listening > > > > For Low Power Listening in the default Tinyo

Re: [Tinyos-help] Low Power Listening

2008-05-13 Thread David Moss
2008 12:58 PM To: tinyos-help@millennium.berkeley.edu Subject: Re: [Tinyos-help] Low Power Listening Thanks Janos and David. I have got yet another query. So i assume, the transmitter could decide to send as soon as it has a packet to send and the radio is on .And keep on retransmitting (within

[Tinyos-help] Low Power Listening : setRxSleepInterval

2009-11-10 Thread Xiaodong Wang
Hi Guys, I have a question regarding the low power listening function. I know for the receiver, we could use setLocalSleepInterval() to invoke the periodic sleeping. And for the sender, in order to send the packet to this receiver, setRxSleepInterval should be used to set the receiver's sleep int

[Tinyos-help] Low power listening settings

2010-11-24 Thread trilok i
Hi , I would like to know what is the use of macro PFLAGS+=-DLOW_POWER_LISTENING and how it varies from setting of parameters using low power listening commands like command void setLocalSleepInterval(uint16_t sleepIntervalMs); command uint16_t getLocalSleepInterval(); command void

[Tinyos-help] Low power listening application

2011-11-14 Thread Stefano Moret
Hi all, I'm trying to reduce the power consumption of the the motes for an application. I modified the Oscilloscope application to sense and transmit data every 10 mins, and then I reduced the power taking instructions from the Low Power Sensing tutorial. I still have a power consumption higher

Re: [Tinyos-help] Low Power Listening collection

2007-08-31 Thread Kevin Klues
This issue was discussed last week sometime: http://mail.millennium.berkeley.edu/pipermail/tinyos-help/2007-August/027529.html http://mail.millennium.berkeley.edu/pipermail/tinyos-help/2007-August/027528.html The basic conclusion was that LPL hasn't been formally integrated with the Collection or

Re: Re: [Tinyos-help] Low power listening

2008-03-26 Thread Flavio Pompermaier
I'm using tinyos 2.0.1, but the problem is to know why should I listen for 100msecs every 2 seconds or stuff like that. How can I be sure that if a node send a message the other one is listening and will receive the message..? Is there any reference to that? >Which sources are you using? >Boome

Re: [Tinyos-help] Low Power Listening : setRxSleepInterval

2009-11-10 Thread Paul Johnson
Xiaodong, My comments are in-line Hi Guys, I have a question regarding the low power listening function. I know for the receiver, we could use setLocalSleepInterval() to invoke the periodic sleeping. And for the sender, in order to send the packet to this receiver, setRxSleepInterval shou

Re: [Tinyos-help] Low Power Listening : setRxSleepInterval

2009-11-10 Thread Xiaodong Wang
Hi Paul, Thank you very much for your reply. This helps a lot. According to your reply, then I have a follow up question. Bascially, the sender will repeatedly send a packet, which covers at least one sleeping interval such that the receiver is likely to hear the packet. This seems very inefficie

Re: [Tinyos-help] Low Power Listening : setRxSleepInterval

2009-11-10 Thread Paul Johnson
Yes, that pretty much sums it up. There are better ways of doing it, but those usually require either very strict time synchronization or beacons whenever a node wakes up from sleep. Each has its disadvantages, it just depends on what is more important to the application. Of course, if you c

Re: [Tinyos-help] Low Power Listening : setRxSleepInterval

2009-11-10 Thread Razvan Musaloiu-E.
Hi! On Tue, 10 Nov 2009, Paul Johnson wrote: > Yes, that pretty much sums it up. There are better ways of doing it, but > those usually require either very strict time synchronization or beacons > whenever a node wakes up from sleep. Each has its disadvantages, it just > depends on what is m

Re: [Tinyos-help] Low Power Listening : setRxSleepInterval

2009-11-10 Thread Paul Johnson
I think "beacons whenever a node wakes up from sleep" covers that :-) But regardless, either you are sending additional messages to keep tight time synchronization (even if you have no need to send packets in the near future), each node is wasting energy every time it wakes up by sending a beac

Re: [Tinyos-help] Low Power Listening : setRxSleepInterval

2009-11-10 Thread Razvan Musaloiu-E.
Hi! On Tue, 10 Nov 2009, Paul Johnson wrote: > I think "beacons whenever a node wakes up from sleep" covers that :-) Right. I was thinking to the LPL stream when I read that. :P > But regardless, either you are sending additional messages to keep tight time > synchronization (even if you have

[Tinyos-help] Low power listening with Collection

2007-02-20 Thread stacy.walker
Hello all, I am working with MICAz on TinyOS 2.0. I have compiled and tested the TestLPL program that comes with TinyOS 2.0. I have also compiled the EasyCollection program which seems to work. How do I use LPL with Collection? If possible I would like to modify EasyCollection to use low power

[Tinyos-help] Low power listening on Telos

2006-02-06 Thread Gerrit Niezen
Hi, I would like to know if anybody is working on implementing low power listening on the Telos platform (or any CC2420 radio platform for that matter) ? Referring to a post by Joe on 26 August 2004, it seems that low power listening was disabled on the B-MAC protocol for the Telos platform. Do

[Tinyos-help] Low power listening on Telos

2006-02-20 Thread Gerrit Niezen
Hi, I would like to know if anybody is working on implementing low power listening on the Telos platform (or any CC2420 radio platform for that matter) ? Referring to a post by Joe on 26 August 2004, it seems that low power listening was disabled on the B-MAC protocol for the Telos platform. Does

[Tinyos-help] Low power listening on Telos

2006-02-20 Thread Gerrit Niezen
Hi, I would like to know if anybody is working on implementing low power listening on the Telos platform (or any CC2420 radio platform for that matter) ? Referring to a post by Joe on 26 August 2004, it seems that low power listening was disabled on the B-MAC protocol for the Telos platform. Doe

[Tinyos-help] Low Power Listening for micaz...

2006-07-07 Thread Marco Antonio Lopez Trinidad
Dear all, I've seen a pair of messages where it is said that there is not an implementation of Low Power Listening for the xbow micaz motes, even in the newest version of TinyOS. But, the question is why it has not been done, hardware design or software restrictions or both? I would thank any i

[Tinyos-help] low power listening - actual listening time?

2007-08-22 Thread Murray, Ben
When using low power listening, as discussed in the duty cycle help thread, I understand that the ON time is approx 5 ms. does anyone know approximately how long the radio is actually receiving during this period? I assume that some of it is due to start up time and that the receiver must be enabl

Re: Re: Re: [Tinyos-help] Low power listening

2008-03-30 Thread David Henry
Again, I can only talk about Boomerang sources . Boomerang lowpower works upon the principle of synchronised global time known to all motes in the network. All synchronised motes then go to sleep and wake up at the same time (duty cycle). All messages are sent/received within this duty cycle. M

RE: [Tinyos-help] low power listening - actual listening time?

2007-08-22 Thread David Moss
s. -David -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Murray, Ben Sent: Wednesday, August 22, 2007 2:28 AM To: tinyos-help@Millennium.Berkeley.EDU Subject: [Tinyos-help] low power listening - actual listening time? When using low power listening, as discus

[Tinyos-help] Low Power Listening not working with Dissemination???

2007-08-23 Thread Christian Hermann
Hallo, I'm using dissemination to send commands to the nodes and LQI collection to collect the data. All works fine without LPL (beside the fact that dissemination is a lot slower than collection with increasing node depth). But if I set LPL duty cycle to 1000 for example, commands need very long

[Tinyos-help] Low power listening in TinyOS-1.x

2008-04-29 Thread 俞龙
Hello, everybody, Are there some protocols in TinyOS-1.x to support the low power listening except the SetListenMode which is provided by CC1000RadioIntM.nc? I know there are CC1000LPL in TinyOS-2.x which works well, and I try to modify it but I fail. Because the platform used is not supported by

[Tinyos-help] Low power listening and multi-hop routing

2008-08-07 Thread Timothy Hnat
I am looking for a way to utilize Low Power Listening (LPL) on a telosb platform. At the same time I need to support multi-hop routing to push data to the base station. I can't find any existing libraries that support both in the tinyos-1.x tree. What I want is something that performs similar to

[Tinyos-help] Low power listening with intel mote 2

2009-03-11 Thread Gmx1
I was not precise enough with my first question. I use the intel mote 2 and try to implement LPL. In the tutorials I saw the implementation of a sampler. I can't see any intel mote 2 support at the nasty hack. Is there any? As far as I know the radio type is supported (says the tutorial on t

RE: [Tinyos-help] Low Power Listening not working with Dissemination???

2007-08-23 Thread David Moss
riginal Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Christian Hermann Sent: Thursday, August 23, 2007 10:47 AM Cc: TinyOS Subject: [Tinyos-help] Low Power Listening not working with Dissemination??? Hallo, I'm using dissemination to send commands to the nodes a

Re: [Tinyos-help] Low Power Listening not working with Dissemination???

2007-08-23 Thread Philip Levis
On Aug 23, 2007, at 10:46 AM, Christian Hermann wrote: Hallo, I'm using dissemination to send commands to the nodes and LQI collection to collect the data. All works fine without LPL (beside the fact that dissemination is a lot slower than collection with increasing node depth). But if I set LPL

Re: [Tinyos-help] Low Power Listening not working with Dissemination???

2007-08-24 Thread Ravi Prasad
Hi, With LPL you can do a simple calculation to calculate a worst case packet delivery time.If sleep interval is 1000 ms then in worst case every hop transmission will take ~1000ms. Now as hop number of hop increase this delay grows significantly. This explains the huge delay. Also you said abou

Re: [Tinyos-help] Low Power Listening not working with Dissemination???

2007-08-24 Thread Christian Hermann
D] On Behalf Of Christian Hermann Sent: Thursday, August 23, 2007 10:47 AM Cc: TinyOS Subject: [Tinyos-help] Low Power Listening not working with Dissemination??? Hallo, I'm using dissemination to send commands to the nodes and LQI collection to collect the data. All works fine without LPL (

[Tinyos-help] low power listening in tossim under TinyOS-2.1

2010-03-04 Thread Yang Peng
Hi all, Is it possible to simulate low power listening in tossim under T2? It seems like lpl implementation in T2 only works for testbed, please correct me if I'm wrong :) Or does someone has a beta version of low power listening component for T2's tossim? I would be very happy to help you verify

Re: [Tinyos-help] Low power listening and multi-hop routing

2008-08-11 Thread Roman Lim
Hello Tim You could give this demo app in the t2 contrib repository a try: /tinyos-2.x-contrib/ethz/snpk/apps/Harvester/ it runs on tmotes (telosb) and tinyos-2.x and uses the collection tree protocol for routing packets to the sink(s) and has a modified LPL mac layer protocol. Roman Timothy H

[Tinyos-help] low power listening interface lacks commands like setLocalSleepInterval?

2014-06-20 Thread Antonis Tzounis
Hello all, I am trying to experiment a little bit with low power communications. My plan is to start a timer that puts radio to sleep mode for most of its duration. I have impelented a counter and I collect temperature and humidity readings. When I gather 5 measurements I fire the message and send

[Tinyos-help] Low power listening in TinyOs-1.x and Telosb

2009-05-16 Thread Nagarjuna
Hello, I am currently working on a project in which i need to put the mote in low power consumption state, when it receives a message from base station, it should reply back and then go to power saving mode. I tried using HPLPowermanagement. But found out that it cannot be used. I figured o

[Tinyos-help] low power listening in tinyos-2.x for CC2420 ?

2006-09-12 Thread Avinash Sridharan
Hi, I am working with the tmote sky platform and running tinyos-2.x (beta 2) on it. I wanted to check with the community if there is low power listening support existing for CC2420 based platforms in tinyos-2.x. Low power listening was introduced as BMAC by Joe Polaster in tinyos-1.x for the CC100

Re: [Tinyos-help] low power listening interface lacks commands like setLocalSleepInterval?

2014-06-25 Thread Lars Tidstam
Hi! It looks like the commands in the LowPowerListening interface was renamed a few years ago. setLocalSleepInterval was renamed to setLocalWakeupInterval. 2014-06-20 11:53 GMT+02:00 Antonis Tzounis : > Hello all, > I am trying to experiment a little bit with low power communications. My > plan

[Tinyos-help] low power listening -- anomalous/random 100-200 ms delay/skew?

2007-09-27 Thread Murray, Ben
(TinyOS 2.0.2; Micaz; mib510; Cygwin) I have left a number of motes running in low power listening mode and have observed that occasionally one or more of the motes' LPL-receive-check experiences a sudden delay/shift of approximately 100 ms and shortly thereafter a second sudden delay/shift of app

RE: [Tinyos-help] low power listening in tinyos-2.x for CC2420 ?

2006-09-13 Thread Diego Bartolomé Arquillo
. Best regards, Diego De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] En nombre de Avinash SridharanEnviado el: miércoles, 13 de septiembre de 2006 2:35Para: tosAsunto: [Tinyos-help] low power listening in tinyos-2.x for CC2420 ? Hi, I am working with the tmote sky platform and running tinyos-2

RE: [Tinyos-help] low power listening in tinyos-2.x for CC2420 ?

2006-09-13 Thread David Moss
Behalf Of Diego Bartolomé ArquilloSent: Wednesday, September 13, 2006 8:24 AMTo: [EMAIL PROTECTED]Cc: tinyos-help@Millennium.Berkeley.EDUSubject: RE: [Tinyos-help] low power listening in tinyos-2.x for CC2420 ? Hi Avinash, Low power listening have not sense using CC2420 because

Re: [Tinyos-help] low power listening in tinyos-2.x for CC2420 ?

2006-09-13 Thread Avinash Sridharan
  I've tested this.   -david   -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Diego Bartolomé ArquilloSent: Wednesday, September 13, 2006 8:24 AMTo: [EMAIL PROTECTED] Cc: tinyos-help@Millennium.Berkeley.EDUSubject: RE: [Tiny

Re: [Tinyos-help] low power listening in tinyos-2.x for CC2420 ?

2006-09-13 Thread Philip Levis
On Sep 13, 2006, at 9:22 AM, David Moss wrote: I am in the final stages of implementing a CC2420 low power listening library for TinyOS 2.x. I'm not intending it to be compliant with any kind of standard; instead, I want it to be functional. This does not require long preambles, and does

RE: [Tinyos-help] low power listening -- anomalous/random 100-200 ms delay/skew?

2007-09-27 Thread Murray, Ben
; -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf > Of Murray, > Ben > Sent: 27 September 2007 11:18 > To: 'tinyos-help@Millennium.Berkeley.EDU'; 'David Moss' > Subject: [Tinyos-help] low power listening -- anomal

RE: [Tinyos-help] low power listening -- anomalous/random 100-200 ms delay/skew?

2007-09-27 Thread David Moss
Sent: Thursday, September 27, 2007 7:05 AM To: Murray, Ben; 'tinyos-help@Millennium.Berkeley.EDU'; 'David Moss' Subject: RE: [Tinyos-help] low power listening -- anomalous/random 100-200 ms delay/skew? I think I may have found the answer to my own question :-) but I have a new

Re: [Tinyos-help] low power listening -- anomalous/random 100-200 ms delay/skew?

2007-09-27 Thread Mischa Weise
llennium.Berkeley.EDU'; 'David Moss' Subject: RE: [Tinyos-help] low power listening -- anomalous/random 100-200 ms delay/skew? I think I may have found the answer to my own question :-) but I have a new question now, but I will put that in a new e-mail ... when LPL is doing its CCACheck rou

RE: [Tinyos-help] low power listening -- anomalous/random 100-200 ms delay/skew?

2007-09-27 Thread Murray, Ben
ginal Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf > Of Mischa > Weise > Sent: 27 September 2007 17:49 > To: David Moss > Cc: tinyos-help@Millennium.Berkeley.EDU > Subject: Re: [Tinyos-help] low power listening -- anomalous/random > 100-200 ms delay/

RE: [Tinyos-help] low power listening -- anomalous/random 100-200 ms delay/skew?

2007-09-27 Thread David Moss
u get - if performance doesn't suffer, then go with it -David -Original Message- From: Mischa Weise [mailto:[EMAIL PROTECTED] Sent: Thursday, September 27, 2007 9:49 AM To: David Moss Cc: tinyos-help@Millennium.Berkeley.EDU Subject: Re: [Tinyos-help] low power listening -- anomalous/

RE: [Tinyos-help] low power listening -- anomalous/random 100-200 ms delay/skew?

2007-09-27 Thread David Moss
-Original Message- From: Murray, Ben [mailto:[EMAIL PROTECTED] Sent: Thursday, September 27, 2007 10:34 AM To: 'Mischa Weise'; David Moss Cc: tinyos-help@Millennium.Berkeley.EDU Subject: RE: [Tinyos-help] low power listening -- anomalous/random 100-200 ms delay/skew? It may also be poss

[Tinyos-help] low power listening -- controlling when it wakes and confirming s leep period?

2007-09-06 Thread Murray, Ben
I am using LowPowerListening with a MicaZ mote and am curious about a few more specifics. I am using the setLocalSleepInterval(X ms) command. My first question concerns the actual sleep period. Given the above command, will the mote: a) perform its low power listening period (taking approximate

[Tinyos-help] Low Power Listening doesn't turn off rf230's oscillator in iris mote.

2010-12-16 Thread antonio rosa
Hi, I'm working with several IRIS modules and Tinyos-2.1.1 and I have a problem with the Low Power Listenning and radio stack for the transceiver RF230. Specifically, my problem is that by using the LPL mode that offers TinyOS-2.1.1. I have seen with the use of an oscilloscope that does not tu

RE: [Tinyos-help] low power listening -- controlling when it wakes and confirming s leep period?

2007-09-06 Thread David Moss
ECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Murray, Ben Sent: Thursday, September 06, 2007 3:43 AM To: tinyos-help@Millennium.Berkeley.EDU Subject: [Tinyos-help] low power listening -- controlling when it wakes and confirming s leep period? I am using LowPowerListening with a MicaZ mote and am cu

Re: [Tinyos-help] Low Power Listening doesn't turn off rf230's oscillator in iris mote.

2010-12-16 Thread Miklos Maroti
Hi Antonio! How did you verify that the RF230 does not go into SLEEP? Are you measuring the MCU clock or the radio crystal? What pins exactly do you connect to? Best, Miklos On Wed, Dec 15, 2010 at 2:50 PM, antonio rosa wrote: > > > Hi, > > I'm working with  several IRIS modules and Tinyos-2.1.

Re: [Tinyos-help] Low Power Listening doesn't turn off rf230's oscillator in iris mote.

2010-12-21 Thread Miklos Maroti
Hi Antonio, Gerat to hear that it works. The driver can lock up if it does not receive the right interrupts. Branoislav Kusy has some fix to make it more resilient (in case for some reason an interrupt is missing), but those interrupts should be received on an undisturbed platform. Best, Miklos

RE: [Tinyos-help] low power listening -- controlling when it wake s and confirming s leep period?

2007-09-06 Thread Murray, Ben
Thanks for the info! I will try to look it all up and will see how I'm going next week. -Ben -Original Message- From: David Moss [mailto:[EMAIL PROTECTED] Sent: 06 September 2007 18:05 To: 'Murray, Ben'; tinyos-help@Millennium.Berkeley.EDU Subject: RE: [Tinyos-help] low