TinyOS is an open source and free operating system under BSD license targetting low-power wireless devices, such as those used in sensor networks, ubiquitous computing, personal area networks, smart buildings, and smart meters.

learn more… | top users | synonyms

0
votes
0answers
15 views

arrays in TinyOs with size

can i save more than 4 arrays with tinyos?? and deploy the program on Iris motes???? because i have written program with tinyos and it didn't work with iris ?? the problem in array !!!
0
votes
1answer
39 views

avr-gcc: No such file or directory

I have been following the TinyOS tutorial at this link: http://www.cse.wustl.edu/~lu/cse521s/Slides/tutorial.pdf. I cannot get the final project code to compile in tinyos. I'm using windows xp with ...
0
votes
1answer
44 views

read data from socket from SerialForwarder

With tinyos there is SerialForwarder which forwards the data to a socket. I have tried to open socket with host:"localhost",,port="9001" ,, but this will always return two bytes ="T!" !! Then I try ...
0
votes
0answers
14 views

Two motes with different tinyos version

can i program two motes one on tinyos1.x and other with tinyos2.x,and still can talk to each other ?? one of them plug to usb serial board. is there any problem will occur? or the thing will come in ...
0
votes
1answer
23 views

cross product in TinyOs?

how can i make cross product between two vector in Tinyos (nesC)? if i have position=p1+x*ex+y*ey;; where ex,ey: are vector. i am searching for that but couldn't find any thing helped !!! so is ...
0
votes
1answer
30 views

use serialforwarder data in another program

how can i build the serialforwarder or use it to forward the received data to another program to make some process? how to parse the data and use it as input data to another program such as Matlab or ...
0
votes
2answers
50 views

dynamic array in NesC with Tinyos 1,x

i want to define dynamic array which i don't want to give it constant length ex: uint16_t array1[10]. need to dynamically grow when we insert new item. i want it suitable with TinyOs 1.x
0
votes
1answer
35 views

File handling in tinyos or tossim

I need to read data from a text file in a tinyos file (nesc file). I searched lot on Internet but couldn't find a way. Is there any way?
0
votes
0answers
58 views

read serial port (HDLC)

to read virtual serial port where High-Level Data Link Control (HDLC) protocol used, is there source code in java or c/c# that handle this protocol ?
0
votes
1answer
52 views

how to read virtual serial port of MIB520

i need to read from my Pc the serial port that connected with MIB520 usb board ? if i know the sequence of the data received byte by byte then can i use C# or any tool to read this port ?? i have ...
1
vote
1answer
33 views

GPS module take time

how much GPS module take time to get the gps infromation, if i use 420cc sensor board attached to this gps module uBlox LEA-4A . i use Iris mote.
2
votes
0answers
31 views

how to parse customer message?

i use customer message and send it broadcast over radio channel, i use example 6 (CounterSend ) from this link . when i build this project as micAz on mote 1, after this i use Xsniffer (TOSBase) on ...
2
votes
0answers
45 views

xserver didn't show result from Xsensor

i have build the example Xsensor for 420cc then i plug it and put the sensor board on it, on other side for the serial board i build Xsniffer (TOSBase) to the mote that i need to put it on the 520MiP ...
0
votes
0answers
64 views

adjust rate of send messages using TinyOs

i use three motes (Iris) using sensor board 420cc with GPS antenna, i need to write app to send GPS information with specific rate using TinyOS 1.x( stander for MoteWork) ?? how to adjust rate send ...
1
vote
1answer
37 views

broadcast at WSN using Motes

using Xmeshfor wireless sensors nodes, 1- it is possible to make nodes (Motes) to send and received by each other ?? not just to send information to the base station ?? 2-can i modify its packet to ...
0
votes
0answers
38 views

TinyOS interrupts handlling

Please give me an advice for this: I want to get the time when a signal is sent from a mote(I was thinking to generate a interruption when the SFD pin gets from 1 to 0) I didn't find a solution for ...
0
votes
0answers
23 views

Making micaz in promiscous mode

I want to make a micaz node which operates in promiscous mode to monitor all packets exchanged by the other motes, and reporting statistics to the PC. Can anyone please help me on how to to do this. ...
0
votes
1answer
19 views

Module to wrap generic Timer

I am trying to write a module to wrap a generic Timer, but I would like to use this module to be able to wrap timers with arbitrary precision, without writing duplicated code. I wrote the module like ...
0
votes
1answer
89 views

TinyOS/nesC Receive.receive event is signalled periodically but processed only once

I'm currently working with implementation of AODV protocol for TinyOS and I'm seeing weird behaviour when network layer is signalling application about received message. Below are relevant pieces of ...
-1
votes
1answer
99 views

How can I uninstall tinyos on Ubuntu [closed]

I installed tinyos 2.1.2 and had some problems. Wanted to uninstall it but didn't know how so I installed tinyos 2.1.1 and now I have them both. Although I f*** them up both so I want to uninstall ...
0
votes
1answer
147 views

Packet Acknowledgements in TinyOS

Iam using telosB motes for implementation. I have come across one of the way for acknowledging the packets, task void send() { call PacketAcknowledgements.requestAck(&myMsg); if(call ...
0
votes
1answer
68 views

what is the transmission power value in dbm (min to max) -CC2420 RADIO

within module implementation, to set transmission power for the packet is 0 to 31 (min to max). Actually what is the transmission power value?? the range of transmission power in dbm??? 31---- ...
2
votes
0answers
137 views

Installing TinyECC using Tossim

I firstly install Ubuntu 10.04 using VMWARE on Windows7. I installed TinyOS 2.1.2 and all the thing are going fine. Blink and other examples are working properly. Tossim is also working for these ...
-1
votes
2answers
38 views

is there any information or books that can teach one to make a tiny os? [closed]

i want to make a tiny os and write it into a udisk. the tiny os should have some most basic functions: boot, multi-thread, input, output, and the reality of some useful functions, such as printf and ...
0
votes
0answers
102 views

Application development in wireless sensor network using micaz motes

I'm looking for some good application in wireless sensor networks using micaz motes. I have 36 micaz motes, 20 mda100cb, and 6 mts400ca sensor boards. I have installed TinyOS and learning ...
0
votes
1answer
108 views

TinyOS , Could not receive the packet after restarting the mote

pseudocode; 1-boot (red led) broadcast the packet,after send done(green light) receive the packet, decode the packet and set led accordingly as (set blue) broadcast the packet after coding, send ...
0
votes
0answers
88 views

How to store node cache and routing table in this code?

Actually I need to store Node Cache, each node should have to maintain its neighbor node (it extracts this info from route request, route reply and source routing). for eg cahe header has [ reqid, ...
1
vote
0answers
101 views

Route request header for DSR (Dynamic Source Routing)

typedef nx_struct RouteRequest{ nx_uint16_t src ; // the node ID of RREQ originator nx_uint16_t desn ; // the node ID of desired destination nx_uint16_t reqid; // unique id ...
0
votes
0answers
50 views

How can I program basestation to only accept packets from a specific mote?

I am gathering sensor data on a mote, M1, using the Oscilloscope component. The data is then sent via radio to a mote, M2, using the basestation component. I want to secure M2 so that it only ...
1
vote
1answer
156 views

TinyOS: How can I convert uint_16 to two uint_8 integers (AES encryption)

I am using the Oscilloscope component to read sensor data. I'm sending this data to a basestation mote which is sending the data to a laptop. I want to implement AES encryption on the sensor data ...
0
votes
1answer
139 views

python2.6 ubuntu 10.04‏‏

I use ubuntu 10.04 and tinyos-2.1.1. I have a problem when i want run "make micaz sim". The problem is the following : mkdir -p simbuild/micaz make: python2.6.5-config: Command not found make: ...
0
votes
1answer
682 views

Is 6loWPAN stack in TinyOS vs Contiki?

As far as Google suggests, the 6loWPAN stack in Contiki and TinyOS should be compatible, though I could quite see any sort of reports on both being continuously tested in some fashion. Does anybody ...
-1
votes
1answer
122 views

Xacml in tinyOS

I have to implement an rbac in mica motes. I've read that Xacml helps in implementation of rbac. But I searched tutorials and google and I'm not able to find anything relevant.Can some one please ...
0
votes
0answers
263 views

How to run TinyDB in TOSSIM: TinyOS 1.x - TOSSIM - TinyDB

Deal all, I am new to the world of TinyOS 1.x - TOSSIM - TinyDB. My goal is testing TinyDB on TOSSIM simulator. I tried to set up those packages by following guide at: ...
0
votes
1answer
240 views

TinyOS periodic Bcast AMSend not received

I want to send messages periodically through this program, the messages are broadcasted fine and I get a sendDone message. The problem is that these messages are not received well. I would really ...
0
votes
0answers
116 views

AMSend.sendDone not connected

When I compile my code, i got the followin error: In component `LNTC.AMSenderC.SenderC.AMQueueEntryP': /opt/tinyos-2.1.1/tos/system/AMQueueEntryP.nc: In function `Send.sendDone': ...
1
vote
0answers
158 views

Sliding window protocol for Packet Link Layer in TinyOS

I am searching for the sliding window protocol implementation in TinyOS. While reading the documentation, It looked that some sliding window protocol must be implemented for Packet Link Layer. I ...
0
votes
1answer
415 views

Bootstrap loader synchronization error

I'm workin with tinyos 2.1.1 on ubuntu 10.04. When i make an application on telosb motes, i have the following error: mkdir -p build/telosb compiling BlinkAppC to a telosb binary ncc -o ...
0
votes
1answer
80 views

Killerbee- LED glow issue

I am working on the Killerbee rzusb stick, mostly used to sniff/Listen data packets in radio platform. I would like to program this device according to my need. There are three LED's on the stick, can ...
1
vote
2answers
391 views

How to read data fro Telosb sensors in Android Tablet (Lenovo)

I would like to connect telosb sensor with my tablet and read the data from sensor. I am using Lenovo tablet (Android 3.1) but I am not able to find the correct driver for this. I tried to run the ...
0
votes
1answer
353 views

Zigbee packet analysis using Killerbee

I am working on Tiny OS using Micaz sensors on Zigbee platform. I am also using Killerbee to analyze the data packets. Can anyone suggest how to read those hexadecimal values? Because the node-ID I ...
2
votes
2answers
110 views

Metrics for comparing event-based and thread-based programming models

I have been asked to compare the programming models used by two different OSs for wireless sensor networks, TinyOS (which uses an event-based model) and Contiki (which uses events internally, but ...
1
vote
0answers
33 views

tinyos and mc52259demo embedded board

How to cross compile an ubuntu tinyos 2.1.1(BLIP) code and the data on the mc52259demo freescale board.
-1
votes
2answers
1k views

Installing TinyOS 1.x and TOSSIM in Ubuntu [closed]

I've been into a project for evaluating the performance of a wireless sensor network. I need to work with TinyOS 1.x and nesC. Also I need to install TOSSIM simulator. I'm using Ubuntu 10.04. Is ...
0
votes
1answer
211 views

Heterogenous application simulation running TOSSIM

I'm planning on building a sensor network using at least two different applications - one application to sense and send data and another to collect data at the root of an ad-hoc network, for example. ...
1
vote
1answer
1k views

Tinyos reception after second reply doesn't work

I'm in trouble with my nesC code. In my code I send a first packet using AMSend.send(AM_BROADCAST_ADDR, &packet, sizeof(rd_message)). After that, when a message is received in function event ...
0
votes
2answers
451 views

Some help required while working on Java and Cygwin together

I am new to java and also cygwin . I do not have in detailed knowledge of both . I need some help.. I simple steps i will try to explain my problem. 1) I am working on tinyOS . its open source OS ...
0
votes
1answer
500 views

TInyOS 1.x Generating an error when compiling BLINK

root@everton-laptop:/opt/tinyos-1.x/apps/Blink# make pc compiling Blink to a pc binary ncc -o build/pc/main.exe -g -O0 -board=micasb -pthread -target=pc -Wall -Wshadow -DDEF_TOS_AM_GROUP=0x7d ...
2
votes
4answers
3k views

no rules to make target 'micaz'

I am a new in Tinyos. I am following the tinyos Tutorial lesson 3: Mote-mote radio communication. When I use 'make' to compile the program BlinkToRadio in lesson 3, I got a error message: make: *** ...
1
vote
0answers
84 views

Difference between Send.nc and SendMsg.nc

What is the difference between Send and SendMsg interface in tinyos?

1 2