[Tinyos-help] how to use the make rule ?

2010-07-26 Thread Haripriya priya
Hi, In TinySec the , security is enabled through setting TINYSEC = true in Makefile of our application program. Then we need to write the actions performed in Avr.rules There we will give our processing... I got a similar example: ifndef TINYSEC TINYSEC := false # default: disable tinysec

Re: [Tinyos-help] serial forwarder

2010-07-26 Thread 胡智
You can try to copy getenv.dll and toscomm.dll from C:\cygwin\lib\tinyos to your JRE's bin or lib directory, or to C:\Windows\System32. 2010/7/26 Yasser Zahedi yasserzah...@gmail.com Hi all, I was using the serial forwarder to listen to the sensor and it was working well, but suddenly when I

[Tinyos-help] Help needed: Unable to run MViz with TOSSIM

2010-07-26 Thread Hindol Adhya
Is there a way to actually run *MViz* with TOSSIM simulated mote network? In TinyOS ver. 1, simulation builds are made using - *make pc*, but this has changed is TinyOS ver. 2. I have found a few guides that describe how to use tossim-serial in TinyOS ver. 1. How do I make TOSSIM create a

Re: [Tinyos-help] TestFtsp

2010-07-26 Thread Juhi
Puneeth Nekkundi Somashekar puneethns at gmail.com writes: Hello guys,   I have been testing TestFtsp program on Tmote Sky. I found a peculiar behavior of the root node in the experiment. Its global time, as indicated in the java program is nearly twice the rest of the nodes.

[Tinyos-help] Problems trying to get sht11 on atm128

2010-07-26 Thread C L
hope this reply is not too late... i have interfaced sht75 to meshbean platofrm, having atm1281 (not so different from atm128). the procedure is the same. and it's fully documented

[Tinyos-help] ftsp error

2010-07-26 Thread Omar Cheikhrouhou (yahoo)
When trying java FtspDataLogger i got the following error s...@localhost:9002 died - exiting (java.net.ConnectException: Connection refused: connect) any help please ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu

Re: [Tinyos-help] About Mic on mts300

2010-07-26 Thread Miklos Maroti
Hi! 2010/7/22 徐经纬 stormheral...@gmail.com: Hi! I have fixed my tinyos and I could compile everything. I have updated tinyos tree and szte-wsn tree. But It still doesn't work. The led0(red led) toggles and other leds didn't do anything.. Strange. That means that the Send command fails for

[Tinyos-help] Serial Forwarder

2010-07-26 Thread Geetha S
Hello, I am following the tutorial: mote-pc serial communication and serial forwarder. I am able to get the listener to dump the packets. Howerver, when I try to use serial forwarder, I just get a blank window. Can someone help me. It is urgent! I am on Ubuntu. Thank you 2010/7/26 Miklos

Re: [Tinyos-help] ftsp error

2010-07-26 Thread Juhi
Hi Omar, You need to set the MOTECOM environment variable for java FtspDataLogger to work. If MOTECOM variable is not set, the program uses s...@localhost:9002 as default. An eg. to set the MOTECOM variable is export MOTECOM=serial@/dev/ttyUSB0:57600 where /dev/ttyUSB0 is the port at which

Re: [Tinyos-help] ftsp error

2010-07-26 Thread Puneeth NS
: connect) any help please -- next part -- An HTML attachment was scrubbed... URL: https://www.millennium.berkeley.edu/pipermail/tinyos-help/attachments/20100726/f75e64e2/attachment-0001.htm -- Regards, Puneeth NS

Re: [Tinyos-help] how to use the make rule ?

2010-07-26 Thread Michael Schippling
The usual way to add an option to the nescc compile line from your app/Makefile is this: PFLAGS += option so this might work: PFLAGS += TINYSEC=true Although you might need it to be -DTINYSEC=true if it is a #define being set. You should see whatever you put in PFLAGS in the nesc

Re: [Tinyos-help] CTP protocol implementation in TOSSIM

2010-07-26 Thread Omprakash Gnawali
On Sun, Jul 25, 2010 at 10:28 AM, Hassan Abid hassan.a...@seecs.edu.pk wrote: Dear all, does any one how to use Collection Tree Protocol (CTP) protocol in TOSSIM 2? Is there any python script available ? There is test.py in apps/tests/TestNetwork as an example. - om_p

Re: [Tinyos-help] CTP protocol implementation in TOSSIM

2010-07-26 Thread Hassan Abid
Yes I have seen that already. But I guess it is for 2 nodes only. I can not find an example script for say 25 nodes ( grid topology) ? Can the example code @ apps/tests/TestNetwork be converted for a large network ? So I am a bit confused as to how to approach this. Regards Hassan Abid

Re: [Tinyos-help] CTP BeaconTimer reset

2010-07-26 Thread Omprakash Gnawali
2010/7/22 Islam Hegazy isl...@gmail.com: Hi, For the resetInterval() in CtpRoutingEngineP.nc, I don't think it is doing its job when called from within BeaconTimer.fired(). Let me explain it by example: Suppose that tHasPassed = false, thus BeaconTimer.fired() will call in order: 1 - 

Re: [Tinyos-help] program dissemination and collection

2010-07-26 Thread Omprakash Gnawali
On Tue, Jul 20, 2010 at 11:06 PM, Geetha S geetha.sanap...@gmail.com wrote: Hi, I am looking for a script that takes an input (.img) file, disseminates it wirelessly to a group of micaz motes and reads the results into a MySql server. Please provide any hints on how to proceed with this. Any

[Tinyos-help] RadioSenseToLeds fails

2010-07-26 Thread Surfman19
hi, i tried to build the app RadioSenseToLeds! but it fails;( could someone tell me what is causing the errors? how can i fix it? r...@xubuntos-tinyos:/opt/tinyos-2.1.0/apps/RadioSenseToLeds# make telosb mkdir -p build/telosb javac RadioSenseMsg.java

Re: [Tinyos-help] CTP BeaconTimer reset

2010-07-26 Thread Islam Hegazy
Hi, For the resetInterval() in CtpRoutingEngineP.nc, I don't think it is doing its job when called from within BeaconTimer.fired(). Let me explain it by example: Suppose that tHasPassed = false, thus BeaconTimer.fired() will call in order: 1 - updateRouteTask() 2 - sendBeaconTask() 3

Re: [Tinyos-help] CTP BeaconTimer reset

2010-07-26 Thread Omprakash Gnawali
On Mon, Jul 26, 2010 at 3:48 PM, Islam Hegazy isl...@gmail.com wrote: Hi, For the resetInterval() in CtpRoutingEngineP.nc, I don't think it is doing its job when called from within BeaconTimer.fired(). Let me explain it by example: Suppose that tHasPassed = false, thus BeaconTimer.fired()

Re: [Tinyos-help] CTP protocol implementation in TOSSIM

2010-07-26 Thread Omprakash Gnawali
On Mon, Jul 26, 2010 at 1:46 PM, Hassan Abid hassan.a...@seecs.edu.pk wrote: Yes I  have seen that already. But I guess it is for 2 nodes only. How did you guess that? Did you look at the test.py file? - om_p ___ Tinyos-help mailing list

Re: [Tinyos-help] RadioSenseToLeds fails

2010-07-26 Thread Alex Chih Hu
This could be caused by Java Path environment. Firstly, you can recheck Java Path environment. Secondly, you enter $(TOSROOT)/support/sdk/java folder, and then make tinyos.jar. I hope these are help for you. 2010/7/27 surfma...@gmx.at hi, i tried to build the app RadioSenseToLeds! but it