[Tinyos-help] sensor platform for computation over MAC

2010-07-16 Thread Sebastian Wenta
Hi everybody, As a student, this semestr I took a part in really interesting project concerning adaptation of sensor networks in next generation networks. After that my love to sensors begun :) Today I start to work in one of the institutes in Berlin. I need to present for my bosses which one of

[Tinyos-help] liveUSB

2010-07-16 Thread Jordi Soucheiron
Hello, The other day I needed to use another computer to program a few Z1 and I didn't have the laptop I usually use. I didn't want to change the hdd from the netbook I was going to use, so I made a ubuntu 10.04 liveUSB with TinyOS. The image was made to be able to program Z1 motes from Zolertia

[Tinyos-help] relationship between ROM, RAM and .hex file

2010-07-16 Thread Ricardo .
Hello everyone, I'm trying to understand the relationship between ROM and RAM .hex file generated in the build. It has been said here that: In words few ROM includes the code and initialized data RAM and includes BOTH initialized and uninitialized data (note the stack That Is Not Included).

Re: [Tinyos-help] Oscilloscope and SerialForward

2010-07-16 Thread Walter Bishop
I've been trying over and over but I'm only getting: serial@/dev/ttyUSB0:57600: resynchronising and then that it is sending several packages, but receiving none. Sending packet 0 Sending packet 1 Sending packet 2 Sending packet 3 Sending packet 4 (...) Any ideas? 2010/7/15 Walter Bishop

Re: [Tinyos-help] Communicate with mote in Windows via USB

2010-07-16 Thread ashkan ekhtiari
I use the same thin , as I told before I tried a couple of ways since I thought maybe it is not possible to communicate directly from windows to mote. this code mentioned by you works pretty well on my Linux version of application, but on Windows version it doesn't open PrintStreamMessanger.err

Re: [Tinyos-help] relationship between ROM, RAM and .hex file

2010-07-16 Thread Urs Hunkeler
Hi Ricardo, The HEX file is a text file. Every byte of the binary is written as two characters (human readable hex values). In addition, there are addresses, checksums and other programming or control information. If you don't assign any value to a variable declaration, that variable will get

Re: [Tinyos-help] relationship between ROM, RAM and .hex file

2010-07-16 Thread Ricardo .
Thanks for the reply. Let me get this straight, the actual occupied memory is provided as a value for the ROM (13800). The flash memory contains the .hex file, which is then decomposed into the ROM and RAM. Is my understanding correct? Regards, -- Ricardo On Fri, Jul 16, 2010 at 2:40 PM, Urs

[Tinyos-help] CC2420_DEF_RFPOWER

2010-07-16 Thread TheMrOrange
Hi, Could you explain me what CFLAG += CC2420_DEF_RFPOWER=4 stands for? It's the cc2420 radio-chip transmission power, isn't it? Could you tell me which RFPOWER values are available and what is the translation in terms of dBm? Do you know if a similar flag is available for IRIS and where I

Re: [Tinyos-help] relationship between ROM, RAM and .hex file

2010-07-16 Thread Urs Hunkeler
Hi Ricardo, I'm not sure I understand your explanation. Also, I'm not entirely sure how this works on the microcontroller. Essentially, a program consists of a number of sections. One section is the actual program code (i.e., the instructions in binary form), and for the programs generated by

Re: [Tinyos-help] CC2420_DEF_RFPOWER

2010-07-16 Thread Giuseppe Cardone
Hi, Could you explain me what CFLAG += CC2420_DEF_RFPOWER=4 stands for? It's the cc2420 radio-chip transmission power, isn't it? Right. Could you tell me which RFPOWER values are available and what is the translation in terms of dBm? Please refer to the CC2420 datasheet:

Re: [Tinyos-help] Oscilloscope and SerialForward

2010-07-16 Thread Michael Schippling
I'm not familiar with an O'scope program that sends messages from the PC to the mote, so I don't know what is Sending Packet N... I would try to find a demo app that sends periodic messages without needing to be told (so the PC doesn't have to send anything back...). The TOS1.x O'scope and Sense

Re: [Tinyos-help] relationship between ROM, RAM and .hex file

2010-07-16 Thread Michael Schippling
My understanding of global variables is that anything declared outside of a function definition is allocated in the heap at link time, and the final size of that heap is what is reported as RAM usage. All variables inside functions (that are not labeled static in real C) are just names for stack

[Tinyos-help] Problems reading a pulse-width signal

2010-07-16 Thread Timothy Hnat
I am having problem precisely reading in a pulse-width signal on a telosb node. This code runs, but I think errors are coming from non-deterministic execution of events between this and other events in the code. async event void pwminput.fired() { uint16_t time; time = call

Re: [Tinyos-help] Wiring Statements

2010-07-16 Thread Philip Levis
On Jul 16, 2010, at 9:30 AM, Shang Lin Chua wrote: Hi all, i've got a question regarding wiring statements. For example, end point1 - end point2 (equivalent to end point2 - end point 1) basically means user(end point 1) is wired to provider (end point 2). can anyone tell me what does end

[Tinyos-help] WINTeR Testbed

2010-07-16 Thread Winter Testbed
Visit winter.cbu.ca for information on wireless sensor network research using the testbed and to learn how to create an account to perform your own scenarios. ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu

[Tinyos-help] Error 57

2010-07-16 Thread John
I tried installing tinyos onto a different computer than the one I was originally using but now I keep getting an error: make: ***[program] Error 57. This only occurs when I try installing the program to a mote. If just build the program then I get no errors. Does this mean the mib520

[Tinyos-help] parallel interface code

2010-07-16 Thread amad khalil
 sir i m  working on   monitoring and  control system for wsn  using telosb  mote...   i have 2 motes and 1 base station   these 2 motes  monitor temperature and humidity and sent to base station .. my monitoring part is complete and i m  getting values of temperature and humidity

[Tinyos-help] Is TinyOS suitable for developing routing protocols like LEACH

2010-07-16 Thread ambongale
Hi, I am interested in the area of developing routing protocols for WSN. I would like to know, Is it possible to implement routing protocols for WSN? Has TinyOS got any built in routing protocols like LEACH, HEED, so that I can perform comparative study of my routing protocol. I am in

Re: [Tinyos-help] [blip-users] error in UDP checksum while forwarding

2010-07-16 Thread Bk K
Hi All, I want to develop an application which will run over BLIP UDP socket on the linux. I could find the UDP socket interface in the /opt/bk/tinyos-2.x/tos/lib/net/blip directory but that is implemented in nesC and is intended for the application development on the mote devices. But I want