Re: [Tinyos-help] Reading from the INTERNAL Flash on tmote sky

2006-03-15 Thread Matthew Poropat
Thank you Chris,Yes, the problem was in my datasheet.I was looking at the MSP430x1xx Family User's Guide (Rev. F) ( http://focus.ti.com/lit/ug/slau049f/slau049f.pdf ), which is listed in the MSP430F1611 product page.Well, now everything is clearer ;)Mate.2006/3/14, Chris Pettus [EMAIL

[Tinyos-help] Message Center!

2006-03-15 Thread Colin Couper
HI Trying to use message centere to view the packets that come in from the Serial Forwarder but when I type java net.tinyos.mcenter.MessageTable I get the following error: Exception in thread main java.lang.NoSuchMethodError: main I get this when I try net.tinyos.mcenter.DiagMSGDisplay and

Re: [Tinyos-help] Sending data through TOSBase to micaz

2006-03-15 Thread Javier .
No led flash in TOSBase mote using my application, but with BcastInject the yellow and red leds turn on sequentially. It indicates that the message has been well received by de micaz with TOSBase? The problem is that the micaz with SimpleCmd turns on the green led when I send the first

Re: [Tinyos-help] About task and function

2006-03-15 Thread Philip Levis
On Mar 14, 2006, at 8:09 PM, Tran Trong Tri wrote: Hi, Thanks for answering...But even if those copies are put into a queue, does that mean they run sequentially one after another without being interrupted in between like: ... copy1 done; copy2 done; ...something else outside that

[Tinyos-help] help for ADC interface

2006-03-15 Thread wassim znaidi
i'm using the ADC interface for a sample application that collecte temperature data but in tossim the function getdata return random number when simulating wuth tossim so i want to setADC value to control the input value so please can anyone help me how to setADCvalue using nesc languagethanks

Re: [Tinyos-help] Light barrier application

2006-03-15 Thread Aditya Bhave
HI Christian,Why dont use the same principle used in burglar detection. Assuming your bottles are passing by on a conveyor belt for example, you could position two sensors, one on either side of the belt. One sensor continously sends an infrared beam to the other and when the passing bottle

Re: [Tinyos-help] Problems with Surge!

2006-03-15 Thread Joe Polastre
Hi Colin, Surge is old, crufty, and doesn't work most of the time. I recommend downloading Moteiv's Boomerang distribution from www.moteiv.com which includes a new mesh application called Delta, and a visualization tool called Trawler. There is more information in Moteiv's Quick Start Guide

[Tinyos-help] surge_reliable

2006-03-15 Thread Paolo Ditto
Hi all. I'm using surge_reliable application on my Mote. I would want to understand the following piece of code: __ event result_t TempTimer.fired() { call Temp.getData(); } async event result_t Temp.dataReady(uint16_t data) {

[Tinyos-help] Compile issue (my ncc outdated?)

2006-03-15 Thread Matthew S. Nassr
I am trying to compile code that I did not write and get a chief complaint of: varargs commands and events are not supported. I assume that they are supported in a later version of ncc. My question is whether this is in tinyos-1.x or tinyos-2.x, where I would find it, and if installing it would be

Re: [Tinyos-help] Include file ordering problem

2006-03-15 Thread Philip Levis
On Wed, 2006-03-15 at 13:34, Sumit Rangwala wrote: Hi, For nesc 1.2 queue.h #ifndef QSIZE #define QSIZE 32 #endif queueM.nc includes queue; int queue[QSIZE]; Does not work. But when I move the #define from the .h file to the .nc file it works. I think this is related

Re: [Tinyos-help] No ~ in the path to rf model in TOSSIM 1.x

2006-03-15 Thread Philip Levis
On Wed, 2006-03-15 at 12:10, Vinayak Naik wrote: Hi, I noticed following behavior in TOSSIM, which was unexpected to me, but may be normal. In any case, I thought that I should post it so that others might benefit. In TOSSIM 1.x, if you specify a rf model using the command

Re: [Tinyos-help] serial forwarder for T2

2006-03-15 Thread Philip Levis
On Wed, 2006-03-15 at 14:57, Omprakash Gnawali wrote: Is there a plan for C-based serial forwarder/listen/rawlisten for T2? If it is already available, please let me know where. A full C toolchain (mig/ncg/sf) is one of the to do items for 2.x. The WG has been talking about coming up with a

Re: [Tinyos-help] network reprogramming on telosb

2006-03-15 Thread Cory Sharp
Deluge is supported on Tmote Sky (telosb) and has been for some time. Do you have a modern version of TinyOS? - Cory On 3/15/06, yicheng [EMAIL PROTECTED] wrote: Hi Folks, Is there any module I can use for network reprogramming on telosb platform? I can only find Deluge which supports

[Tinyos-help] diff between task and command

2006-03-15 Thread Aditya Bhave
What is the difference between a task and a command. Arent both of them preemtable by events, but cannot preempt each other? What is the use of posting a task if in any case the posted tasks are going to be run sequentially? -- regards,Aditya Bhave ___