[Tinyos-help] error make: *** [exe0] Error 1 in Blip2

2013-02-01 Thread Sheikh Jaaved
hi all, i am just trying to run the blip using the tutorials from tinyos and getting the foloing error and i am unable to compile the program any help will be appreciated. make telosb blip mkdir -p build/telosb compiling PppRouterC to a telosb binary ncc -o build/telosb/main.exe -Os

Re: [Tinyos-help] error segmentation fault

2013-02-01 Thread wasif masood
must be some illegal memory reference, check out the pointers. Use safe, try declaring your message_t pointers with ONE. On Fri, Feb 1, 2013 at 6:26 AM, Sheikh Jaaved sheikh.jaa...@gmail.comwrote: hi all, i was just running the tutorials of the tiny os on my ubuntu 12.04 lts but it is

[Tinyos-help] I2C read and write API

2013-02-01 Thread He Dajiang (I2R)
Hi list, Sorry if this question has been asked. I am wondering why in the I2C interface functions read and write, there is no field for register address. async command error_t read(i2c_flags_t flags, uint16_t addr, uint8_t length, u int8_t* data); async command error_t write(i2c_flags_t flags,

[Tinyos-help] put a node in lowpower state in Tossim

2013-02-01 Thread Suresh Kumar Das
hi How does a node put in low power state in Tossim. Which interface should I use to put a node in periodical sleep and listening state in Tossim. Any solution or help is appreciated. Thanks -- Best regards Suresh Kumar Das M Tech , Computer Science University of Hyderabad

Re: [Tinyos-help] I2C read and write API

2013-02-01 Thread Eric Decker
The I2C protocol itself doesn't define the concept of a register. The addr field is the device address (7 bit, right aligned) which is defined by the i2c protocol. Many many devices however structure their interface along register lines and define their device protocol as having a register

Re: [Tinyos-help] error segmentation fault

2013-02-01 Thread Eric Decker
I'm pretty sure this is tossim (hence the seg fault, live systems don't seg faults, they just get weird). If it is, safe and ONE won't catch it. I don't think they do anything in TOSSIM. Course it would have been uber-cool if Sheikh Jaaved had actually given us more information so we didn't

Re: [Tinyos-help] error make: *** [exe0] Error 1 in Blip2

2013-02-01 Thread Eric Decker
What toolchain are you using? do: msp430-gcc --version On Fri, Feb 1, 2013 at 2:21 AM, Sheikh Jaaved sheikh.jaa...@gmail.comwrote: hi all, i am just trying to run the blip using the tutorials from tinyos and getting the foloing error and i am unable to compile the program any help will be

[Tinyos-help] ticks to seconds

2013-02-01 Thread Alpha Gama
Hi all, I want to simulate my protocol during 30 mn, so please what have I to put in this line of the test file : while (t.time() 600 * t.ticksPerSecond())  Thank you  ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu

[Tinyos-help] IPSN'13: CALL FOR DEMOS AND POSTERS

2013-02-01 Thread IPSN'13 Publicity
The 12th International Conference on Information Processing in Sensor Networks (IPSN 2013) draws upon many disciplines including networking, signal and image processing, information and coding theory, databases, information management, distributed algorithms, embedded systems, wireless

Re: [Tinyos-help] SD card with IRIS

2013-02-01 Thread Janos Sallai
Yes, USART1 is accessible through the 51-pin connector and it can be used in SPI mode, so the hardware is more than capable to hook up an SD card. However, the USART it's currently configured as a UART in the code in tos/chips/atm1281 in the official TinyOS tree. The meshbean code in

Re: [Tinyos-help] HELP AODV implementation

2013-02-01 Thread Electronics Pub
Hi, Sorry I have no expirience with that. you might ask you question from tinyos mailing list: tinyos-help@millennium.berkeley.edu On 31-1-2013 7:21 AM, - wrote: SENDER: BALAJI EMAIL: balajigupta.s1...@gmail.com SUBJECT: HELP

Re: [Tinyos-help] error make: *** [exe0] Error 1 in Blip2

2013-02-01 Thread Eric Decker
On Fri, Feb 1, 2013 at 10:58 PM, Sheikh Jaaved sheikh.jaa...@gmail.comwrote: hi Eric, thanks for the reply i am using msp430-gcc (GCC) 4.6.3 20120301 tool chain on ubuntu 12.04 lts where did you get it? I tried compiling the same thing as you only mine worked. I got the warnings but did