Re: [Tinyos-help] How to make MSP430 sleep?

2008-06-26 Thread Eric Decker
First, why do you have to use T1? I'm more familar with T2 since I haven't worked with T1 for over 2 years. T2 will automatically put itself to sleep if it doesn't have any work (tasks posted) to do. That is the short answer. It is more complicated than that because the task scheduler will call

[Tinyos-help] problems with TestSerial : serial link issues : SOLVED

2008-06-26 Thread ivi610
Hello in fact the mib510 switch must be off in order to the board to be able to send packets over the serial link. Cheers - Hello i uploaded the TestSerial into a mote micaz and ran the TestSerial application on a pc. So i have one

[Tinyos-help] about the CVS version of tinyos.

2008-06-26 Thread wang wei
Dear all I have a question about how to install the CVS version of tinyos, i have installed the tinyos2.0, and i have tried some commands about setting up the tinyos tree, but failed so anyone can tell me a correct way to compile programs on the CVS version? thanks so much :) Vi

Re: [Tinyos-help] about the CVS version of tinyos.

2008-06-26 Thread wang wei
On Thu, Jun 26, 2008 at 1:49 AM, wang wei [EMAIL PROTECTED] wrote: Dear all I have a question about how to install the CVS version of tinyos, i have installed the tinyos2.0, and i have tried some commands about setting up the tinyos tree, but failed so anyone can tell me a correct way to

Re: [Tinyos-help] about the CVS version of tinyos.

2008-06-26 Thread wang wei
i have solved the problem , thanks Vi On Thu, Jun 26, 2008 at 1:49 AM, wang wei [EMAIL PROTECTED] wrote: Dear all I have a question about how to install the CVS version of tinyos, i have installed the tinyos2.0, and i have tried some commands about setting up the tinyos tree, but failed so

[Tinyos-help] MSP-FET430UIF JTag installation problem...

2008-06-26 Thread agia
Hello all! I am trying to install the MSP-FET430UIF hardware for debugging with tmotes using the gdb for windows. I am trying to initialize the device by following some commands that i found in the internet. More specifically i type: msp430-gdbproxy msp430 TIUSB and i get the following error

[Tinyos-help] wrong length in ieee802154

2008-06-26 Thread rodolfo de paz
Hi, I would like to warn community what for me is a bug in ieee802.15.4 stack. It is not huge problem in real hw but it was causing me problems when emulating the stack in Avrora. The problem is that the Sendframe function was sending to TxFIFO one byte more than it actually should be. (It

[Tinyos-help] max amount of interfaces with tinyos1

2008-06-26 Thread Sander
Hello everyone, I ran into a strange problem with my software which to me seems to be caused by the number of used interfaces. I'm currently using tinyos1 because tinyos2 seems to be to slow in sampling the adc channels. Anyhow my software was running without any big problems, but I needed

[Tinyos-help] Problem with TinyDB (no data returned)

2008-06-26 Thread 白惠文
Hi, I attempted to simulate TinyDBMain with TOSSIM, but it failed. The simulator works, and TinyDBMain runs. Commands can be sent from the base station to other network nodes and sampling commences, but data are never returned to the base station. I am using task-tinydb-1.1.3 and tried 3

Re: [Tinyos-help] Accessing the SHT15 on the MDA300

2008-06-26 Thread Charles Elliott
Hi Chris Thanks for the ports! I've been working of the SHT11 code from telosa.chips.sht11 so far I've copied the folder to the IRIS folder and added to the .platform file to make it find the folder when it compiles. I realize that this is not the best way to go about it but for now it should do.

[Tinyos-help] How to send out a user-defined packet from TOSBase, use existing RadioSend or implement a new one?

2008-06-26 Thread Haoying Liu
Hi, How can I broadcast a packet via radio from Basestation? Since TOSBase already implement a RadioSend to forward to radio packets received from UART, I tried: 1. Add another GenericComm component and use SendMsg to handle the application broadcast packet. 2. Use exist RadioSend

Re: [Tinyos-help] max amount of interfaces with tinyos1

2008-06-26 Thread Paul Stickney
clarify the number of interfaces used. I'd be more inclined to suspect some small logic error introduce. HTH, Paul On Thu, Jun 26, 2008 at 5:46 AM, Sander [EMAIL PROTECTED] wrote: Hello everyone, I ran into a strange problem with my software which to me seems to be caused by the number of

[Tinyos-help] Help needed [collisions in TinyOS] !!!

2008-06-26 Thread Qasim Mansoor
Hello, I am new to TinyOS environment, i am working on a project in which i want to collide packets originating from 2 motes. I have disabled the CSMA and CRC but still i am unable to see any collided packets.In my case i am sending packets from two and recieve them at third mote which is

[Tinyos-help] Compliation error

2008-06-26 Thread Anthony Smee
Hi there In an effort to try and understand networking, I copied some code from the following link (http://64.233.183.104/search?q=cache:lcu-HYOtTCUJ:www.et.byu.edu/groups/ececmpsysweb/cmpsys.2008.winter/tinyos.ppt+call+AMSendhl=enct=clnkcd=5gl=uk) and when I compile it I get the following

[Tinyos-help] (no subject)

2008-06-26 Thread John Paul
Hi, I had been working in tossim 2.0 quite recently and i have started to work on telosb motes. But i did some updates of tinyos in ubuntu .Yesterday when i compiled just sampled code give in the apps directory it showed errors from annots_stage1.h and annots_stage2.h .So thinking that updates

[Tinyos-help] Xubuntos + tos1 tinyviz java exception.

2008-06-26 Thread chen
Hi: I¹m using xubuntos(7.04) for tinyos1 programming. I just wonder why the tinyviz doesn¹t work. There are a lot of java exceptions, is it because missing some java files? Exception in thread main java.awt.AWTError: Cannot load AWT toolkit: gnu.java.awt.peer.gtk.GtkToolkit at

[Tinyos-help] TinyOS tasks issue

2008-06-26 Thread echubb
Hi There I'm working on an nesC program as part of a university thesis at the moment, where the program samples the temperature and humidity sensors from an MTS420 sensorboard attached to a MicaZ mote. The mote then forwards the readings on to any others in its proximity, while accepting

[Tinyos-help] MicaZ tasks issue

2008-06-26 Thread echubb
Hi There I'm working on an nesC program as part of a university thesis at the moment, where the program samples the temperature and humidity sensors from an MTS420 sensorboard attached to a MicaZ mote. The mote then forwards the readings on to any others in its proximity, while accepting

Re: [Tinyos-help] max amount of interfaces with tinyos1

2008-06-26 Thread Michael Schippling
Or possibly you have run out of memory on the controller? MS Paul Stickney wrote: clarify the number of interfaces used. I'd be more inclined to suspect some small logic error introduce. HTH, Paul On Thu, Jun 26, 2008 at 5:46 AM, Sander [EMAIL PROTECTED] wrote: Hello everyone, I ran

Re: [Tinyos-help] Xubuntos + tos1 tinyviz java exception.

2008-06-26 Thread Paul Stickney
Make sure you are using the -official- Java 6 SDK (by Sun) for the least amount of problems. I suspect you are using GCJ. If this is the case, you may try to use the classpath-gtkpeer package. HTH, Paul ___ Tinyos-help mailing list

Re: [Tinyos-help] (no subject)

2008-06-26 Thread Paul Stickney
Problem unclear. It sounds like you're trying to use apt-get without having the correct repos setup or without the correct local package. I just use the provided rpms (don't even bother with the alien/deb conversions) because they install cleanly in the directory structure.

[Tinyos-help] heavy-meyer

2008-06-26 Thread funofnet Funofnet
Hi, Please, which is the environnement (noise, obstacles ) that discribes the heavy meyer file? Thanks _ Envoyez avec Yahoo! Mail. Une boite mail plus intelligente

Re: [Tinyos-help] heavy-meyer

2008-06-26 Thread Paul Stickney
It is not realistically describable. You must model your own environment setup. HTH, Paul 2008/6/26 funofnet Funofnet [EMAIL PROTECTED]: Hi, Please, which is the environnement (noise, obstacles ) that discribes the heavy meyer file? Thanks Envoyé

Re: [Tinyos-help] Help needed [collisions in TinyOS] !!!

2008-06-26 Thread David Valencia
Qasim, Should check out this paper RID: Radio Interference Detection in Wireless Sensor Networks: http://www.cs.virginia.edu/papers/RIDPaper.pdf. David Message: 3 Date: Thu, 26 Jun 2008 20:57:32 +0500 From: Qasim Mansoor [EMAIL PROTECTED] Subject: [Tinyos-help] Help needed [collisions in

Re: [Tinyos-help] Help with Tymo and IRIS Motes

2008-06-26 Thread Romain Thouvenin
Hello, Sorry for the delay, I am currently travelling and have scarce Internet access. Andrey, you're right, when compiling for a platform other that tossim, you need a volumes file as DYMO requires some storage (I may change this in the future). Raphael, are you using latest CVS tinyos

Re: [Tinyos-help] Xubuntos + tos1 tinyviz java exception.

2008-06-26 Thread chen
Thanks But now there are some new errors I have seen some ppl has this problem when tinyviz run under tos1, but I couldn't find a solution from Google, any idea? Loading simulator plugins... Exception in thread main java.lang.NullPointerException at