Re: [Tinyos-help] CTP: ETX values vs. LPL wake-up interval

2010-10-22 Thread Manjunath Doddavenkatappa
Generally, yes. As ETX increases lossses also increase. I can observe the fact that RetxmitTimer in CtpForwardingEngine being fired quite a few times before sucessfully transmitting every packet. But, only a few times this does not hold with packets getting through although ETX remains at a

Re: [Tinyos-help] FTSP and microsecond precision on Crossbow Iris platform

2010-10-22 Thread Sinan Yildirim
Hi Urs, I used a testbed of 15 IRIS sensor nodes which are placed in communication range of the reference broadcaster. I constructed a line topology by configuring each node such that it will accept incoming messages from the nodes with id one more or one less of the id of the current node.

Re: [Tinyos-help] FTSP and microsecond precision on Crossbow Iris platform

2010-10-22 Thread Sinan Yildirim
Hi Janos, In fact I have developed another time synchronization protocol and I have tested it using the same testbed. I can get 2-3 miroseconds accuracy. Thus, I feel that the timestamping mechanism works well (but just a feeling :)). I just suspect about if some modification to TimeSyncP is

Re: [Tinyos-help] MICA2 transmission power adjustment in tinyos 2.x

2010-10-22 Thread Enrico Treu
In order to get this behaviour i simply added a few lines of code to my application: module /**/ { uses { //... interface CC1000Control as RadioStrengthControl; //... } } and event void Boot.booted() { //... #ifdef RFPOWER call RadioStrengthControl.setRFPower(RFPOWER); #endif //.. }

[Tinyos-help] compilation error

2010-10-22 Thread Nida Sahar Syed
Hi   I am using tinyos to save data(which is received from another node) on EEPROM of mote. when I am compiling code there is an error   Parse error at the end of input.   My code is given below:     includes SenseMessage; // header file for message struc     module SenseReceiveM {   provides

[Tinyos-help] Compilation error

2010-10-22 Thread Nida Sahar Syed
Hi   I am using tinyos to save data(which is received from another node) on EEPROM of mote. when I am compiling code there is an error   Parse error at the end of input.   My code is given below:     includes SenseMessage; // header file for message struc     module SenseReceiveM {  

Re: [Tinyos-help] unable to receive UART frame

2010-10-22 Thread Mario Riesner
Hi Urs, thank you for your clues. I copied the lib/serial files to my test project folder. Now I can receive single bytes and can follow the state machine step by step in the SerialP.nc file. If I send single bytes 0x7E (Framing byte) and 0x44 (Frame Type) the state machine accepts the frame

Re: [Tinyos-help] unable to receive UART frame

2010-10-22 Thread Mario Riesner
Hi Urs, again, I reduced the baud rate to 38400 now it works. The module receives a whole frame and sends an ACK frame. Now I have to find out why the highest event in my test code is not called. For now thank you for your help. Cheers, Mario -Ursprüngliche Nachricht- Von: Urs

[Tinyos-help] About BlinkToRadio-The Packet is different

2010-10-22 Thread CY . Liu 
I am now studying Lesson 4: Mote-PC serial communication But when I run the net.tinyos.tools.Listen This is my BlinkToRadio Packet: 00 00 FF FF 00 01 06 00 06 00 01 00 01 01 00 FF FF 00 01 06 00 06 00 01 00 02 02 00 FF FF 00 01 06 00 06 00 01 00 03 03 00 FF FF 00 01 06 00 06 00 01 00 04 and

Re: [Tinyos-help] compilation error

2010-10-22 Thread Urs Hunkeler
Looks like you forgot the final closing curly brace (}). Cheers, Urs On 10/21/2010 08:25 AM, Nida Sahar Syed wrote: Hi I am using tinyos to save data(which is received from another node) on EEPROM of mote. when I am compiling code there is an error Parse error at the end of input. My code

[Tinyos-help] XServe

2010-10-22 Thread Dave McGee
Hi guys, Has anyone ever actually successfully worked with XML RPCs to XServe? I have XServe running fine, and I'm able to use XServeTerm without any issues.. but all I'm reading about is lots of documentation on XServe, and a lack of actual working implementations. For the moment, all I want to

Re: [Tinyos-help] unable to receive UART frame

2010-10-22 Thread Mario Riesner
Hi Urs, the official baud rate is 57600 but the AVR ATMega1281 on my platform (Meshbean) should use double rate for the UART but the controller does not use double rate even though the flag is set (should be set??). I think the accuracy at 57600 is not high enough. Using the baud rate 38400

Re: [Tinyos-help] unable to receive UART frame

2010-10-22 Thread Urs Hunkeler
Hi Mario, The default event is indeed only called if no wiring has been specified. This could have two reasons: (1) you have a wiring problem (as you suggested), or (2) or the type of the message (the value in the square brackets [] before the function parameters) is not the expected value.

[Tinyos-help] erasing the log

2010-10-22 Thread Anna Förster
Hi all, is there any simple method of erasing the log on the node NOT from the code itself? E.g. when installing a new program? Anna -- Dr. Anna Förster PostDoctoral Researcher Networking Laboratory, SUPSI Via Cantonale, Galleria 2 Manno, Switzerland Tel. + 41 58 666 6597

Re: [Tinyos-help] Deluge Post-Dissemination Reboot Problem

2010-10-22 Thread Sensors Project
From: eced...@ece.iisc.ernet.in From my experience with deluge, if you opt for 'disseminate and reboot' option, the program gets disseminated and all the nodes now reboot with this code. You can verify this by ping command and find the name in the Currently Executing: part. Could you tell me

Re: [Tinyos-help] CTP: ETX values vs. LPL wake-up interval

2010-10-22 Thread Omprakash Gnawali
Are you using TestNetworkLpl and changing the flags in the Makefile to control various intervals? If not, you should tell me how to replicate your problem starting with TestNetworkLpl. - om_p On Thu, Oct 21, 2010 at 11:01 PM, Manjunath Doddavenkatappa dodda...@comp.nus.edu.sg wrote: Generally,

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] MICA2 transmission power adjustment in tinyos 2.x

2010-10-22 Thread Prusayon Nintanavongsa
Thanks for your reply. However, it has compilation error RadioStrengthControl.setRFPower not connect. What component should I put in the configuration file? For example, what component provides interface CC1000Control? Then I'll put that into my configuration file and wire it accordingly

[Tinyos-help] could someone help me with the installation, thx

2010-10-22 Thread yongfeng
Hi, I'm a new user to TinyOS, and when I started to install the Moteiv Tmote tools 2.0.5 setup, it will tell me there is a problem with this installer package and a program required for this install to complete could not be run. I don't know where the problem is. Could anyone help me?

Re: [Tinyos-help] Problem with 4bitle link estimator

2010-10-22 Thread Omprakash Gnawali
I just committed some tweaks to the estimator. Can you check now? - om_p On Thu, Oct 21, 2010 at 11:07 PM, Qiu Ying qy.n...@gmail.com wrote: I would need a little bit more information to help you debug CTP. How can I reproduce this bug? It's easy to reproduce it on my

[Tinyos-help] MultihopOscilloscope in Google Code doesn't work

2010-10-22 Thread 白惠文
Hi, I just switched to the Tinyos on Google Code. It seems that the MultihopOscilloscope does work. I can only receive data from root node, but not from other nodes. It seems the problem is that sendDone() is never triggered on a node who is not root. Does someone else have

Re: [Tinyos-help] MultihopOscilloscope in Google Code doesn't work

2010-10-22 Thread 白惠文
Forgot to mention, I am using TelosB. I just tried MultihopOscilloscopeLqi, doesn't work either. The red LED toggles on root node, which comes from report_problem() in the code. Lan From: lancey...@hotmail.com To: tinyos-help@millennium.berkeley.edu Date: Sat, 23 Oct 2010 08:56:05 +0800

Re: [Tinyos-help] CC2420DBK using TinyOS

2010-10-22 Thread Varun Jain
Hi Jingyao, I use Tinyos-2.0.2... You will have to make changes to some files in micaz for making it work. Please also send your questions to tinyos-help as there might be other people also who can answer the questions. Regards, Varun Jain From: Jingyao

Re: [Tinyos-help] Damaged IEEE 802.15.4 header in TinyOS 2.x

2010-10-22 Thread Jan Bauer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Phil, thanks for your reply. You're right, there's a problem with the current version of the CC2420CsmaP.nc. If I use the previous version of this file, wireshark captures correct IEEE headers of my applications again. However, there's one

Re: [Tinyos-help] cant run : make micaz sim

2010-10-22 Thread wingmaker
Hello! Well it seems like you are facing a Python version mismatch and it has happened because the sim.extra which is a file inside your tinyos make directory which is usually at /opt/tinyos-2.x/support/make has a hard coded line which says PYTHON_VERSION. Yuo gotta change that to 2.6 or

Re: [Tinyos-help] CC2420DBK using TinyOS

2010-10-22 Thread Jingyao
Hi, Varun, Thank you so much for your reply. Would you please give me some clue what files should I change? Currently, I loaded binaries of Blink to CC2420DBK board, it does not work. Thanks. Regards, Jingyao From: Varun Jain Sent: October 22, 2010 9:17 PM To: Jingyao Cc:

[Tinyos-help] CTP: CtpForwardingEngineP component error

2010-10-22 Thread Dongyu Yang
-- Forwarded message -- From: Philip Levis p...@cs.stanford.edu Date: 2010/10/23 Subject: Re: [Tinyos-devel] CTP: CtpForwardingEngineP component error To: Dongyu Yang yangdy.n...@gmail.com Cc: tinyos-de...@millennium.berkeley.edu Please send questions to tinyos-help. Phil On