[Tinyos-help] about tools of ice-insight

2008-01-25 Thread jiwen zhang
Hello all: when i use the tool of ice-insight , i fall across some problems. firstly, i talk about the link of hardware. i have a programming board mib510 , Jtag ICE mk-ii. i use serial port to connect jtag ice with pc. i use usb port to supply power to jtag ice(because i can't find the

[Tinyos-help] on - off switch

2008-01-25 Thread Giovanni Rossi
hi I try to explain better. So I need to send by telosb 1 byte which indicate a flag = 1 or 0. The value have to depend by on - off switch. switch off -- 0 switch on -- 1 This value have to depend by user, but I used THE USER SWITCH for another application yet, so I need to use a Expansion. I

[Tinyos-help] Using motes as flash drives?

2008-01-25 Thread David
Hi TinyOS readers. Is it possible for a regular tinyos mote to behave like a USB flash drive? For instance, when the PC wants to read a block from disk, a tinyos app interprets the request, reads from flash, and returns over USB the data requested. A few problems with the above (as I currently

[Tinyos-help] on - off switch

2008-01-25 Thread Giovanni Rossi
excuse me I would see an exemple about softwareno soldering ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] Simple question about generating nesdoc documentation from cvs source

2008-01-25 Thread Xavier Orduña
Hi! I downloaded the cvs current version of tinyos-2.x, which is the right command to generate the full nesdoc documentation? (in fact, only for telosb / tmote). I tried with commands like: nesdoc -o $TOSROOT/doc/html/nesdoc -target=telosb -new -html (with some variations). but I get always the

Re: [Tinyos-help] Using motes as flash drives?

2008-01-25 Thread Xavier Orduña
Hi David, What about the CC2511http://focus.ti.com/docs/prod/folders/print/cc2511f16.htmlTexas Instrument chip? In includes a 2.4 Ghz Radio, a 8051 and a Full speed usb controller. They provide code to use the controller as a USB Mass storage device. The only problem is that they use another

RE: [Tinyos-help] about tools of ice-insight

2008-01-25 Thread Siirtola Harri
First of all, be more patient (you reposted this after three hours). You can't expect to get immediate replies, this is a list with people from all time zones. Someone just might be sleeping ;) Do you know how much current the ice draws? Can you see it's certainly alive? USB port only gives

Re: [Tinyos-help] on - off switch

2008-01-25 Thread Michael Schippling
Dig down into the User Button interface and see how it works. You should be able to clone it to use a different I/O pin. Also, in Boomerang/T1 there is the MSP430GeneralIOM interface that allows access to digital I/O on every available pin. MS Giovanni Rossi wrote: hi I try to explain better.

Re: [Tinyos-help] Detailed information on the 51-pin expansion connector on MicaZ, Stargate

2008-01-25 Thread Michael Schippling
I have a little pin-out cheat sheet at: http://www.etantdonnes.com/Motes/ATMEGApins.txt But figuring out most of the actual functions will probably require reading the ATMEGA chip manual. MS Liangping Ma wrote: Hi everyone, There is a white 51-pin expansion connector on MicaZ, which

Re: [Tinyos-help] CC2420 Rssi sampling and packet reception interaction

2008-01-25 Thread Tal Rusak
Sorry for the blank message. What I wanted to ask is what the application being intended here. In the past, I have found it reasonable to use two motes in a situation that requires RSSI measurement and packet reception. Thanks, Tal Thanks, Tal Hi, You could try something like the

[Tinyos-help] can anyone pls help me...

2008-01-25 Thread Edmund J
hi, Anyone knows how to convert the RSSI value(the strength) of tmote sky to db? e.g 0xFA to dB? thank you. Regards, Edmund - Search. browse and book your hotels and flights through Yahoo! Travel ___

[Tinyos-help] Re:Tinyos-help Digest, Vol 57, Issue 81

2008-01-25 Thread Nancy
hi everyone, I wanna install tinyos1.1.15 on my computer.However I'm a little confused about how to set the envioronmental parameter cause there are several versons on webs, can somebody tell me which one suits tinyos1.1.15?___ Tinyos-help mailing

Re: [Tinyos-help] Simultaneous Serial and Radio Communication

2008-01-25 Thread Michael Schippling
I'd have to rummage though all the code to form a coherent opinion but I'd guess that it was a shortcut/sight based on using the state to 'single-file' radio messages, and the UART comm exists as a wart on the side of the system so it got the short end of the code. If you really need to fire

Re: [Tinyos-help] read packet in BlinkToRadio application

2008-01-25 Thread Michael Schippling
I'm ccing this back to the help list to keep a record... When you say I have been able to listen the serial port. Does that mean that you used the Listen program and saw some messages received? And prior to that you used TestSerial and got the expected messages as well, right? If both of those

Re: [Tinyos-help] Simultaneous Serial and Radio Communication

2008-01-25 Thread Sha Liu
Actually what I mean is: In GenericComm, before the sendDone() is signaled for a packet on radio, attempts to send another packet to UART will fail due to the set of variable state. I'm just wondering why GenericComm makes such a restriction. In other words, why can't we call the send() to UART

Re: [Tinyos-help] CC2420 Rssi sampling and packet reception interaction

2008-01-25 Thread Damien O'Rourke
Hi, You could try something like the following in CC2420ReceiveP: uint16_t RSSI_Values[SomeNumberDeterminedByLengthofPkt]; async command void CC2420Receive.sfd( uint16_t time ) { if ( call SpiResource.immediateRequest() == SUCCESS ) sample_RSSI();

Re: [Tinyos-help] PoolP: get(),put() and free

2008-01-25 Thread Nue Noi
Hi, Thanks for your explanation. I still have one more question. In Pool.put(pool_t* newVal), why do we need to input (*newVal)? What's the purpose of this line queue[emptyIndex] = newVal; Can't we simply increase a free to deallocate an object? On Jan 24, 2008 7:19 PM, Philip Levis [EMAIL

Re: [Tinyos-help] Using motes as flash drives?

2008-01-25 Thread David
On Jan 25, 2008 12:53 PM, Xavier Orduña [EMAIL PROTECTED] wrote: Hi David, What about the CC2511 Texas Instrument chip? Thanks for this info. I didn't know about this chip. We'll be following up on this info at a later stage :-) David. ___

Re: [Tinyos-help] CC2420 Rssi sampling and packet reception interaction

2008-01-25 Thread Tal Rusak
Can you please describe the application? Thanks, Tal Hi, You could try something like the following in CC2420ReceiveP: uint16_t RSSI_Values[SomeNumberDeterminedByLengthofPkt]; async command void CC2420Receive.sfd( uint16_t time ) { if ( call

Re: [Tinyos-help] Detailed information on the 51-pin expansion connector on MicaZ, Stargate

2008-01-25 Thread Philip Levis
On Jan 25, 2008, at 11:08 AM, Michael Schippling wrote: I have a little pin-out cheat sheet at: http://www.etantdonnes.com/Motes/ATMEGApins.txt But figuring out most of the actual functions will probably require reading the ATMEGA chip manual. MS This looks like a great thing to put up

Re: [Tinyos-help] Regarding Sampling Application

2008-01-25 Thread Michael Schippling
Continue reading through the tutorial and all should become clear...hah... The Oscilloscope program does something like what you want, as do the Sense* demo apps in T1. If you are just using an ADC you don't need the whole MDA300 board because the conversion is done directly by the ATMEGA chip

[Tinyos-help] Book NesC and TinyOS

2008-01-25 Thread Tiago Wanderley
Hi, could somebody indicate a good book to learn the language NesC e TinyOS? ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] Book NesC and TinyOS

2008-01-25 Thread Avinash Sridharan
This is an online book by Phil Levis. I found it really useful when I was getting my feet wet with nesC and TinyOS. Apart from this the tutorial for T2 is and T1 are quite comprehensive and should get most people going of to a flier. http://csl.stanford.edu/~pal/pubs/tinyos-programming.pdf