Re: [Tinyos-help] Reading the usb port without the java Listen (what is the byte RSSI)

2011-11-04 Thread sai manoj
Hi, I want to copy the message header into payload by creating my own payload format This is the Msg format I like to transmit typedef nx_struct Msg { nx_uint16_t hdr; ieee154_header_t header_t; nx_uint16_t val; nx_uint16_t type; }Msg; And in the implementation part I tried 3

Re: [Tinyos-help] Reading the usb port without the java Listen (what is the byte RSSI)

2011-11-04 Thread Michael Schippling
The message header, kinda by definition, is at the beginning of the message packet before the payload. So trying to get the header out of the payload is a non-starter... There may be a Packet.getHeader() or some such method -- I don't use that module so I don't know. Or you could probably get away

[Tinyos-help] Reading the usb port without the java Listen (what is the byte RSSI)

2011-11-03 Thread Jorge R. Beingolea G.
Hi all, I'm working on an application to process the Telosb, using Oscilloscope application. I started by collecting and reading data through the USB port, and realized that the process of reading directly from USB port, without the use of command java Listen, 2 bytes are added to the

Re: [Tinyos-help] Reading the usb port without the java Listen (what is the byte RSSI)

2011-11-03 Thread Michael Schippling
One of the features of the Mote-PC communication is that the RSSI value is not included... On one hand it makes sense because that channel doesn't have a radio strength, but on the other, it causes lots of grief because folks want to see the strength of the signal received at the base-station,

Re: [Tinyos-help] Reading the usb port without the java Listen (what is the byte RSSI)

2011-11-03 Thread Jorge R. Beingolea G.
Hi Michael, There is no other way? in my case only installed the application of the oscilloscope, but I'm reading directly from the USB port without the aid of some other application like: MOTE-PC or java Listen. when I read the USB port have a few additional bytes, I thought some of them

Re: [Tinyos-help] Reading the usb port without the java Listen (what is the byte RSSI)

2011-11-03 Thread Michael Schippling
Sorry, that was the extent of my ideas... maybe someone smarter and more up-to-date has some better ones. MS Jorge R. Beingolea G. wrote: Hi Michael, There is no other way? in my case only installed the application of the oscilloscope, but I'm reading directly from the USB port without the