[Tinyos-help] Entra nella mia rete su LinkedIn

2012-03-27 Thread yamina khenfouci tramite LinkedIn
LinkedIn yamina khenfouci ha chiesto di aggiungerti ai suoi collegamenti su LinkedIn: -- Vorrei aggiungerti alla mia rete professionale su LinkedIn. Accetta l'invito di yamina khenfouci

Re: [Tinyos-help] (no subject)

2012-03-27 Thread Eric Decker
On Tue, Mar 27, 2012 at 3:10 AM, Juan Martinez juan.jose.martinez.ro...@gmail.com wrote: Hi, I’m using Xubuntos with tinyos-2.1.0 and the folder that contain hurray archive. My question is anybody knows witch is the route that I have to introduce the hurray folder? you might want to be a

Re: [Tinyos-help] IRIS motes corrupted data received - CRC check

2012-03-27 Thread Oldrine Lewis
Hi Miklos, Removing the CSMA/Tx retries seems to have fixed the issue. I have not seen any corrupted packets since. I am kind of surprised that the AT86RF230 has bugs even in the core functionality Thanks, Lewis -Original Message- From: mmar...@gmail.com [mailto:mmar...@gmail.com]

Re: [Tinyos-help] IRIS motes corrupted data received - CRC check

2012-03-27 Thread Miklos Maroti
Hi Lewis, On Tue, Mar 27, 2012 at 8:48 AM, Oldrine Lewis ole...@sutron.com wrote: Hi Miklos, Removing the CSMA/Tx retries seems to have fixed the issue. I have not seen any corrupted packets since. I am kind of surprised that the AT86RF230 has bugs even in the core functionality Great to

[Tinyos-help] Timestamp problem

2012-03-27 Thread Han Bin
Hi everybody, I'm working on implementing Schedule-based MAC protocol and I apply FTSP for time synchronization (use telosb mote). I use AMSend/ActiveMessageC interface to send and receive messages. Timestamp is made before sending message (or after receiving message as well) by using the command

[Tinyos-help] help lesson 4 - The java class is not found: TestSerial

2012-03-27 Thread tifenn . rault
Dear all, I try to follow the tinyos-2.x tutorial in lesson 4: Mote-PC serial Communication. I successfully compiled and installed the TestSerial application on telosb mote. However, when I type in the TestSerial directory: java TestSerial I get: The java class is not found: TestSerial

Re: [Tinyos-help] help lesson 4 - The java class is not found: TestSerial

2012-03-27 Thread Michael Schippling
I don't use TOS2 so I can't easily look it up, but it may be that you need to include the full package name on the command line which might be something like: java net.tinyos.tools.TestSerial Java wants the fully specified package name for all classes it uses, even if you are in the directory

[Tinyos-help] (no subject)

2012-03-27 Thread Juan Martinez
Hi everybody, I'm ussing tinyos-2.1.1 in a ubuntu VMware and I wanna use the hurray, the readme is:

Re: [Tinyos-help] help lesson 4 - The java class is not found: TestSerial

2012-03-27 Thread Janos Sallai
Tifenn: Your classpath looks weird: .:C:/cygwin/opt/tinyos-2.x/support/sdk/java/tinyos.jar:C:/cygwin/opt/tinyos-2.x/support/sdk/java Java on windows expects that the elements of the classpath are separated with semicolons, not colons. The correct classpath should be:

Re: [Tinyos-help] help lesson 4 - The java class is not found: TestSerial

2012-03-27 Thread Bíró , András
Hi, I think the windows CLASSPATH format is different: It uses ; (semicolon) instead of : (colon), and \ (backslash) instead of / (slash). Andris On Tue, Mar 27, 2012 at 4:35 PM, tifenn.ra...@etu.utc.fr wrote: Dear all, I try to follow the tinyos-2.x tutorial in lesson 4: Mote-PC serial

Re: [Tinyos-help] how to simulate routing protocol in tinyos2.1.1

2012-03-27 Thread Fernando Antonio Marques Filho
Take a look at avrora, the main site is not updated but there's a 2012 version of it somewhere (I dont have the link right now, sorry). Fernando On Tue, Mar 27, 2012 at 2:51 PM, jeni john jenij...@rediffmail.com wrote: hi, I am doing project in fault tolerance routing.I have installed tinyos

[Tinyos-help] Finding location of a node in Tinyviz

2012-03-27 Thread TUSHAR MAHESHWARI
How to find location of a node in tinyviz, i.e. i want a node to send its location when it sends packet to another node. How can it be possible?? ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu

Re: [Tinyos-help] how to simulate routing protocol in tinyos2.1.1

2012-03-27 Thread Christian Haas
On 03/27/2012 08:08 PM, Fernando Antonio Marques Filho wrote: Take a look at avrora, the main site is not updated but there's a 2012 version of it somewhere (I dont have the link right now, sorry). http://sourceforge.net/projects/avrora/ -- Dipl. Inform. Christian Haas Karlsruher Institut

Re: [Tinyos-help] help lesson 4 - The java class is not found: TestSerial

2012-03-27 Thread Prasanth P
Hi, I have faced the same problem and solved. One thing is you might not have compiled your java files. Go inside /tinyos-x.x/support/sdk/java folder and give command make. If that itself is not working try following (a) Download java tar file from the Tiny OS CVS repository:

Re: [Tinyos-help] Timestamp problem

2012-03-27 Thread AKHILA S RAO
call LocalTime.get() gives you the local time on the node. If you want to access the global time on the node then you need to use the call GlobalTime.local2Global(mylocaltime) command. Here mylocaltime is the return parameter of call LocalTime.get(). I think what you need to do is compare global