Re: [Tinyos-help] RSSISample Contrib Application

2007-10-05 Thread Tal Rusak
Hi, I am trying to run the RSSISample program. It appears to be running, however, no information is being displayed to Java standard out. The only message that I get is serial@/dev/ttyUSB0:115200: resynchronizing Is something going wrong? Thanks, Tal > Hey Tal, > > The README is ou

Re: [Tinyos-help] Problem with communicating with PC using UART0 on telos ver.B for tinyos 2.x

2007-10-05 Thread Vaibhav Nagarnaik
Hi All, Any ideas yet why I can't communicate using UART0 from telosb? I have confirmed that the cross-over serial cable is good for communication and that there is no other problem. Is it something to do with using some kind of chip select for the multiplexed bus on UART0 and CC2420? All

Re: [Tinyos-help] problems with ncc

2007-10-05 Thread Michael Schippling
It could be as simple as putting the directories that contain the "missing" command files into your PATH environment variable. First, find the files using the "find" command or a FileMangler find. Second, put the directory into your PATH, either using the Environment Variables panels hidden benea

Re: [Tinyos-help] Using startPeriodicAt(...)

2007-10-05 Thread Kevin Klues
Try MilliTimer.startPeriodicAt(MilliTimer.getNow() + 1,1000) Kevin On 10/5/07, Roberto <[EMAIL PROTECTED]> wrote: > Hi all, > > I would like delay the beginning of a timer. So I considered the > startPeriodicAt() function provided by the interface Timer in TinyO- 2.x. > Unluckly, this functi

[Tinyos-help] can I use ADC4/ADC5 on Tmote sky

2007-10-05 Thread yicheng
Hi Folks, I need to use ADC4 and ADC5 on Tmote Sky, but these two pins are already connected with PAR and TSR sensor. Can I cut these two sensors off and use my own sensor instead? Thanks! Yicheng ___ Tinyos-help mailing list Tinyos-help@Millenn

[Tinyos-help] ADC3 and UART0 in Tmote Sky

2007-10-05 Thread Sikar Chan
Hi all I got some questions about the ADC3 and UART0 in Tmote Sky. 1) How to "enable" the power pin from ADC3 of Tmote Sky? (as mentioned here: http://www.cmucam.org/wiki/telos_tmote) 2) How to tell a CmuCAM3 to start transfer a data from UART1[CmuCAM] to UART0[Tmote] ? Thanks Best Regards Sik

[Tinyos-help] A new communication stack available for TinyOS 2.x

2007-10-05 Thread François Ingelrest
Dear all, We would like to announce the public release of a new multi-hop communication stack for TinyOS 2.x developed at EPFL in the context of the SensorScope project. This project aims at developing a large-scale distributed environmental measurement system centered on a wireless sensor network

Re: [Tinyos-help] Compile Error / No Targets / TinyOs 2.x

2007-10-05 Thread raysaikat
What's your MAKEFILES? Sent via BlackBerry from T-Mobile -Original Message- From: Jan Gäbler <[EMAIL PROTECTED]> Date: Fri, 05 Oct 2007 15:16:49 To:tinyos-help@Millennium.Berkeley.EDU Subject: [Tinyos-help] Compile Error / No Targets / TinyOs 2.x Hallo together, I have recently insta

[Tinyos-help] Compile Error / No Targets / TinyOs 2.x

2007-10-05 Thread Jan Gäbler
Hallo together, I have recently installed tinyos-2.x on my fedora7 system, according the manual from the tinyos homepage. this works overall fine, but i'm unable to compile the simple Blink application. During compiling, i will receive the followning output: -

Re: [Tinyos-help] transition from async call

2007-10-05 Thread Ákos Maróy
Aurelien Francillon wrote: Well i was thinking at this part of the text: "All interrupt handlers are async, and so they cannot include any sync functions in their call graph. The one and only way that an interrupt handler can execute a sync function is to post a task. A task post is an async

Re: [Tinyos-help] transition from async call

2007-10-05 Thread Aurelien Francillon
Ákos Maróy a écrit : Aurelien, AFAK the solution is to post a task... thanks :) I would recommend the reading of TinyOS Programming Manual (http://www.tinyos.net/tinyos-2.x/doc/pdf/tinyos-programming.pdf) from P. Lewis section: 4.5 "Concurrency" it very clearly explains concurrency, sync

Re: [Tinyos-help] packet transmission time for mica2 platform

2007-10-05 Thread Ray kah
Hello Jpaek Is there any theoritcal calculation this estimation? Transmission time = packet size / air data rate(bps) ? Ray On 10/5/07, Jeongyeup Paek <[EMAIL PROTECTED]> wrote: > > depending on size of the packet, couple of tens of milliseconds? > > Thanks > > - jpaek > > > Ray kah wrote: > > D

Re: [Tinyos-help] transition from async call

2007-10-05 Thread Ákos Maróy
Aurelien, AFAK the solution is to post a task... thanks :) I would recommend the reading of TinyOS Programming Manual (http://www.tinyos.net/tinyos-2.x/doc/pdf/tinyos-programming.pdf) from P. Lewis section: 4.5 "Concurrency" it very clearly explains concurrency, sync, async, atomic etc ..

Re: [Tinyos-help] Is it possible to adjust MOTE/MiCAz's transmit powe r in the middle of the process

2007-10-05 Thread Bernardo Avila Pires
The micaz radio stack (it's what I think it's called) allows you to set the power via packet. Each time a packet is sent, one of its fields is checked and the value is set for RF power. I don't know about Telos. As regards mica2, you have to use the component CC1000ControlP.nc , the interface CC100

Re: [Tinyos-help] transition from async call

2007-10-05 Thread Aurelien Francillon
Ákos Maróy a écrit : I know this is a lame question, but I really tried to read up on it and can't find a simple answer. The question is: from 'async' code, how do I call an 'normal' function? Now what I have is, in an Alarm.fired() (which is async), I call Read.read(). Fair enough, I get a w

[Tinyos-help] problems with ncc

2007-10-05 Thread mejda chouaieb
Hello All, I have Windows Media Center Edition and I installed Tinyos-2.x but when I try to compile something I have : bash-3.2$ pwd /cygdrive/c/jennic/cygwin/opt/tinyos-2.x/apps/Null bash-3.2$ make yamp /bin/sh: tos-ident-flags: command not found mkdir -p build/yamp compiling NullAppC to a ya

[Tinyos-help] transition from async call

2007-10-05 Thread Ákos Maróy
I know this is a lame question, but I really tried to read up on it and can't find a simple answer. The question is: from 'async' code, how do I call an 'normal' function? Now what I have is, in an Alarm.fired() (which is async), I call Read.read(). Fair enough, I get a warning for this. but h

[Tinyos-help] Using startPeriodicAt(...)

2007-10-05 Thread Roberto
Hi all, I would like delay the beginning of a timer. So I considered the startPeriodicAt() function provided by the interface Timer in TinyO- 2.x. Unluckly, this function don't works very well for my work. I use the function as follows: MilliTimer.startPeriodicAt(1,1000) In this way I would li

Re: [Tinyos-help] non-continous usage

2007-10-05 Thread Ákos Maróy
Kevin Klues wrote: Its all part of the tinyos cvs repository, you probably just forgot to do a `cvs update -dP` to guarantee that newly created directories get added and old deleted ones get pruned. yes, you're right, I did this typical mistake. been using svn for a while now, so I'm getting o

[Copfilter] Copy of quarantined email - *** SPAM *** [8.4/5.0] [Tinyos-help] Help Required

2007-10-05 Thread [EMAIL PROTECTED]
This is a multipart mime message Hi all I am currently doing my masters program in computer science dept from the Univ of Houston I have taken a course on Wireless Sensor Networks because of my inclination in sensor technologies . I am currently doing a project "Emulation and Simulation

[Copfilter] Copy of quarantined email - *** SPAM *** [8.4/5.0] [Tinyos-help] Help Required

2007-10-05 Thread [EMAIL PROTECTED]
This is a multipart mime message Hi all I am currently doing my masters program in computer science dept from the Univ of Houston I have taken a course on Wireless Sensor Networks because of my inclination in sensor technologies . I am currently doing a project "Emulation and Simulation