Re: [Tinyos-help] Problem with parameterized interface

2006-01-20 Thread Julien Graziano
Thanks for your help, it works. Julien signature.asc Description: Ceci est une partie de message numériquement signée ___ Tinyos-help mailing list Tinyos-help@Millennium.Berkeley.EDU https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-

[Tinyos-help] TOSBase with parametrized received.

2006-01-20 Thread t3lab
I want have a parametrized Receive in TOSBase for 2 different Active message ID (as Receive used in GenericComm) But if I use GenericComm with TOSBase I've a conflict with UART i think. It's possible to modify TOSBase in this sense? Luigi. ___ Tiny

[Tinyos-help] (no subject)

2006-01-20 Thread Emmanuel AMADOR
Hello, I am a French student and my final project is programming an interface between a sensor that communicates with a serial port and a mote that will use its serial port to receive the message. Then the message is sent through radio to a PC. I have studied the nesC, and worked on the tutorials.

[Tinyos-help] Serial to RFM ?

2006-01-20 Thread Emmanuel AMADOR
Hello, I am a French student and my final project is programming an interface between a sensor that communicates with a serial port and a mote that will use its serial port to receive the message. Then the message is sent through radio to a PC. I have studied the nesC, and worked on the tutorials

[Tinyos-help] Regarding write to flash

2006-01-20 Thread Raghu Ganti
Hi, I have a question regarding write to flash, when writing to flash, the semantics of the flash are that it takes about 14ms to write 264 bytes of data. I was wondering if this 14ms is spent as busy time by the CPU or is it that the flash chip takes 14ms to commit to the flash memory and it take

Re: [Tinyos-help] Serial to RFM ?

2006-01-20 Thread Michael Schippling
search back on the list for a few months. There's a bunch of discussion of connecting sensors to the UART. I think you will need to avoid using GenericComm for the Radio because it is also connected to the UART, so dig a little deeper in the code stack there. TOSBase is a similar idea, but still u

Re: [Tinyos-help] TOSBase with parametrized received.

2006-01-20 Thread Michael Schippling
If you're going for the whole arbitrary message routing thing you'll probably have to tweeze GenericComm apart. However just peeking at the received messages' handler-IDs and calling some different code once in a while shouldn't be a huge undertaking. MS t3lab wrote: I want have a parametrized R

[Tinyos-help] Oscilloscope GUI multi node help

2006-01-20 Thread NORDSTR�M
Hi, I have a problem. Even when I try to run the Oscilloscope application with multiple nodes, the Serial Forwarder shows that the number of clients is 1. Is it correct ? Or is it wrong ? Thanks, tina --- TINA NORDSTRÖM __ Do You Y

[Tinyos-help] Micaz sleep

2006-01-20 Thread Raghu Ganti
Hi I tried searching the help archives, but there seems to be no information. Has anybody successfully put the micaz to sleep? There does not seem to be much resources in the help archives as to how to put micaz to sleep. Also, the $TOSDIR/apps/TestSnooze works only for the Mica2s. Thanks Raghu -

[Tinyos-help] Problem when building TelosRssiC with "make telos"

2006-01-20 Thread Rafael Marin Perez
Hi all, I have a problem when building the application (contrib/ucb/apps/TelosRSSI) in telos rev_A. Everything works fine when "make telosb". I have tried to "make telos" in the Blink application and there is no error. I have already "cvs update" in my tinyos root. Any idea? Thank you very much.

[Tinyos-help] JTAG debugging for Tmote sky

2006-01-20 Thread Delynn Bettencourt
I'm wondering what the current status is on debugging with JTAG tools on Tmote sky.  I think I understand that we're only able to debug on the app.c level.  Is anybody currently using JTAG with the Tmote?  I'd appreciate any suggestions you may have.   Thanks   DeLynn

Re: [Tinyos-help] about running XBow codes on TinyOS v1.1.15

2006-01-20 Thread Kristin Wright
1.1.15 runs on micaz and mica2. -kw On 1/19/06, Ivan Wing Mau Cheung <[EMAIL PROTECTED]> wrote: > Hi, > > Crossbow says the XBow codes only supports TinyOS up to v1.1.10. But I need > TinyOS v1.1.15 for Deluge. Does anybody have experience on trying out XBow > codes on TinyOS v1.1.15 successfully

[Tinyos-help] TinyViz help

2006-01-20 Thread Liang Huang
Hi,   I am running TestTinyViz and it does not work. The TinyViz shows 'communication to simulator failed' and I have some error messages in the command window as below. The GUI will start but do nothing but sit there. I read some old post about similar problem but none of the suggestions realley

[Tinyos-help] TinyOS Logo Contest!

2006-01-20 Thread Kristin Wright
In conjunction with the 3rd International TinyOS Technology Exchange, we are holding a public TinyOS Logo Contest. The winning logo will become the "official" TinyOS logo. You can read all the details on the tinyos.net homepage, and they're included below for convenience. Good luck!

Re: [Tinyos-help] Problem when building TelosRssiC with "make telos"

2006-01-20 Thread Joe Polastre
The app is too big for Telos A motes (it exceeds their RAM). That's why it works on Telos B and not Telos A. -Joe On 1/19/06, Rafael Marin Perez <[EMAIL PROTECTED]> wrote: > Hi all, > I have a problem when building the application (contrib/ucb/apps/TelosRSSI) in > telos rev_A. Everything works f

Re: [Tinyos-help] TinyOS Logo Contest!

2006-01-20 Thread Joe Polastre
To add incentive, Moteiv Corporation will donate a Tmote Sky developer's kit to the individual that submits the winning design. Good luck! -Joe Polastre CEO, Moteiv Corporation On 1/20/06, Kristin Wright <[EMAIL PROTECTED]> wrote: > In conjunction with the 3rd International TinyOS Technology Exc

[Tinyos-help] Re: TinyOS Logo Contest!

2006-01-20 Thread Kristin Wright
Crossbow has joined Moteiv in donating prizes to the logo contest winner! Spicing things up considerably, the logo contest winner will now receive: * a Moteiv Tmote Ski Developers Kit (includes 10 motes; see moteiv.com for details)! * $500 credit towards the purchase of any Crossbow product! Many

[Tinyos-help] re: Serial to RFM

2006-01-20 Thread jagan nath
Hello Emmanuel, If u read the TOSBase application, u'll understand that it listens on the radio channel and transmits thesame values on the UART(serial) which are recieved by serial forwarded. I think u can modify the program to make work it the other way round i.e serial to RFM. I have modified