[Tinyos-help] how to use power tossim - tinyos-2.x in fedora ...

2010-07-23 Thread Haripriya priya
hi, I wish to know about working in power tossim.. Have any one worked already in that? I am using Tinyos-2.x in fedora.. Please tell how to work with power tossim... Thanks in advance.. -- Regards, S.Haripriya ___ Tinyos-help mailing list Tinyos-he

[Tinyos-help] Interfaces and components in tinyos-1.x link??

2010-07-23 Thread shri humrudha
Hi, This link below gives the available interfaces and components in tinyos-2.x for mica2 motes http://webs.cs.berkeley.edu/tos/tinyos-2.x/doc/nesdoc/mica2/ Similarly, is there any link available for tinyos-1.x? Thanks for reading. ___ Tinyos-help

Re: [Tinyos-help] How to write data to a file and not flash memory?

2010-07-23 Thread Chieh-Jan (Mike) Liang
Hi Rizwan, I added tossim support for at45db. The code is available at our GIT repository (http://hinrg.cs.jhu.edu/git/?p=mike/tinyos-2.x.git). Basically, I went below the storage abstraction layer, and simulate at driver level. Mike On Jul 22, 2010, at 4:22 PM, Rizwan Mumtaz wrote: > Hello

[Tinyos-help] Current Time Passing

2010-07-23 Thread ashkan ekhtiari
In an application we need to know what is the tiem interval between each sending packet in milliseconds. I use LocalTime to get time , but it overflows so that sometimes gives negative values sometimes gives positive values, the duration of overflow cycle is not too long. Any suggestion how to over

[Tinyos-help] Access to bits in mica2

2010-07-23 Thread Sebastian Wenta
Hi everyone! I would like to have an access directly to the transceiver. Moreover I need to have a full control over data that are being sent. From the devices currently available on the market I found out that probably the only node supporting bit transmission instead of packet transmission is m

[Tinyos-help] Mutiple channel in tossim

2010-07-23 Thread Antonio Quartulli
Hi all, is there the possibility in tossim to specify the radio channel to use for the communications? I would like to let different pairs of node to talk between them without interfearing each other. Could it be possible? Greetings, -- Antonio Quartulli ..each of us alone is worth nothing..

[Tinyos-help] TinyOS help

2010-07-23 Thread faisal
Hi all I have installed Tinyos2.1.1 on ubuntu 10.04. I am following tutorials and help from the tinyos wiki. when I go to the Blink directory and run make I get the following error. a...@asus:~$ cd /opt/tinyos-2.1.1/apps/Blink a...@asus:/opt/tinyos-2.1.1/apps/Blink$ sudo make telosb make: *** No r

Re: [Tinyos-help] TinyOS help

2010-07-23 Thread Thomas Schmid
You don't have the tinyos tools installed in root, i.e., don't use sudo! your /opt/tinyos-2.1.1 directory probably has the wrong permissions. Two sollutions: 1. use a TinyOS VM with all the tools correctly installed 2. sudo chmod asus:asus /opt/tinyos-2.1.1 -R cd /opt/tinyos-2.1.1/apps/Blink

[Tinyos-help] Problem with the param "jiffies" when I try to read two channels simultaneosly

2010-07-23 Thread Mario Torrecillas Rodríguez
Hi all; After lot of efforts i've succeed in reading two channels in telosb. But, if I try to change the "jiffies" to a lower valor all readings (actually, all of them except the first one) are 0. This is my actual configuration: const msp430adc12_channel_config_t config = {inch: INPUT_CHANNEL_

[Tinyos-help] TelosB minimum voltage

2010-07-23 Thread Manjunath Doddavenkatappa
Dear All, What is the minimum required voltage for TelsoB (without any external sensors) ? 1.8V is the minimum for older Telos, is this true for TelosB ? Thanking you, Manjunath D

Re: [Tinyos-help] TelosB minimum voltage

2010-07-23 Thread Thomas Schmid
The msp430 can go down that far, the cc2420 radio not. While you might be lucky and the TelosB might work at that voltage, it is definitely out of spec. Minimum voltage for the CC2420 is 2.1V. This should have been the same for older Telos motes, as they used the same radio. Cheers, - Thomas On

[Tinyos-help] TinyOS help

2010-07-23 Thread faisal
Hi Thomas I ran the command sudo chown asus:asus -R /opt/tinyos-2.1.1/ cd /opt/tinyos-2.1.1/apps/Blink make telosb and it worked mkdir -p build/telosb compiling BlinkAppC to a telosb binary ncc -o build/telosb/main.exe -Os -O -mdisable-hwmul -fnesc-separator=__ -Wall -Wshadow -Wnesc-all -

[Tinyos-help] TestMcu

2010-07-23 Thread ada thomo
*Hi, I was trying to simulate TestMcu application in order to estimate the energy of the nodes according to the instruction **http://mail.millennium.berkeley.edu/pipermail/sim-wg/2007-September/80.html But I get the following error: $ python test.py Traceback (most recent call last): File

Re: [Tinyos-help] TestMcu

2010-07-23 Thread ada thomo
Well, sorry for the TestMcu application the error is: *$ python test.py Traceback (most recent call last): File "test.py", line 16, in em=t.newEnergyEstimator(); File "/opt/tinyos-2.x-contrib/cedt/apps/tests/TestMcu/TOSSIM.py", line 269, in __getattr__ = lambda self, name: _swig_geta

Re: [Tinyos-help] Mutiple channel in tossim

2010-07-23 Thread Chieh-Jan (Mike) Liang
We have implemented several enhancements for TOSSIM. These include CC2420 interface, multi-channel support, and so on. Our GIT repository is at http://hinrg.cs.jhu.edu/git/?p=mike/tinyos-2.x.git Mike On Jul 23, 2010, at 5:34 AM, Antonio Quartulli wrote: > Hi all, > > is there the possibility

Re: [Tinyos-help] Mutiple channel in tossim

2010-07-23 Thread Antonio Quartulli
Hi Mike and thank you. Is this feature available in a stable release? Or is it suggested to use the git version? Thank you again. Regards On ven, lug 23, 2010 at 12:23:33 -0400, Chieh-Jan (Mike) Liang wrote: > We have implemented several enhancements for TOSSIM. These include CC2420 > interfac

[Tinyos-help] Multiple motes

2010-07-23 Thread John
I can't seem to figure out why my program doesn't act correctly sometimes. I created a structure similar to the one in BlinkToRadio to contain the payload portion of my radio message. I have one uint_16 store the mote id and another store data. The receiving mote just forwards the message t

Re: [Tinyos-help] Mutiple channel in tossim

2010-07-23 Thread Eric Decker
it is part of John Hopkins changes beyond the core release. I've been using the John Hopkins code for some time because I really like the git interface vs. CVS. I've found it to be stable and the quality of the John Hopkins code to be quite good. Your mileage will vary. On Fri, Jul 23, 2010 a

Re: [Tinyos-help] Error 57

2010-07-23 Thread Simon Kellner
* John [2010-07-16 15:19 -0400]: > 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