Re: [Tinyos-help] Problems trying to get sht11 on atm128

2010-07-29 Thread Gavin Soebiantoro
I managed to fix the code, apparently the problems were - a dead sht11 sensor - wiring the Interrupt signal in the HplSensirionSht11C Thanks for the reply though :) I'll have a look at the contrib code, I might learn something new haha Regards Gavin On Mon, Jul 26, 2010 at 7:39 PM, C L wrote:

Re: [Tinyos-help] help in tinyos

2010-07-29 Thread siva kumar
Hi vinni., how r u..? -- Best regards siva kumar ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] help in tkn154

2010-07-29 Thread marco di sano
Hi, I'm a student of University of Catania. I'm working on modules telosb using TKN154 library. I use tree Routing Protocol to implement the communication between the motes, but i have some problem. First,I ask you if in this library is implemented the communication from a Pancoordinator to a chil

[Tinyos-help] TinyOS-Setup Problem

2010-07-29 Thread Sahar Seidi
Dear all I am a student at Amirkabir University of Technology and I am working on my project about wireless sensor networks. For this, I need to simulate a network in TinyOS environment but I do not know how to start with it. I have already installed  TinyOS 2.1.0 on ubuntu 9.10 ,but when I try

Re: [Tinyos-help] TinyOS-Setup Problem

2010-07-29 Thread Francesco Ficarola
Sahar Seidi ha scritto: > Dear all > > I am a student at Amirkabir University of Technology and I am working on > my project about wireless sensor networks. > For this, I need to simulate a network in TinyOS environment but I do > not know how to start with it. > I have already installed TinyOS 2

Re: [Tinyos-help] help in tkn154

2010-07-29 Thread Jan Hauer
In general, to assign to a node the role of the PAN coordinator you use the MLME_START interface (see Sect. "7.1.14.1 MLME-START.request" in IEEE 802.15.4-2006). > Then i say: the event MCPS_DATA.request is only for messages that are sent > from an end-device to a Pancoordinator or not?Is it possi

[Tinyos-help] RSSI value update

2010-07-29 Thread Peng Du
Hi. Is the RSSI value in RSSI.RSSI_VAL register only updated when a message is received? Many thanks. ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] Oscilloscope

2010-07-29 Thread CHEN WEIMING
Hello, all: I edited the java code in Oscilloscope to display the data received, in the Node class, I have the following function to update data: void update(int type, int reading) { for (int i=Store-1;i>0;i--) Data[type][i] = Data[type][i-1]; Data[type][0] = reading;

[Tinyos-help] Difference between Rssi trace and Noise Trace for CPM modeling in TOSSIM

2010-07-29 Thread Hassan Abid
Dear all, I have collected RSSI traces using Imote2 platform in both noisy and quite environment. Can I use them in TOSSIM? Is there any difference between Rssi Trace and Noise trace ? For quite environment I am getting values in range of -49 to -46 dbm Please clarify Best Regards -- Has

[Tinyos-help] TOSH macro in TinyOS 2.x

2010-07-29 Thread Francesco Ficarola
Hi everyone, I noticed that in MDA300CA driver by contrib/SensorIB for TinyOS 1.x there are some macro as TOSH_SET_PW2_PIN() to enable internal voltage excitation. Is there something for TinyOS 2.x? My hardware: MIB520 + Iris XM2110 + MDA300CA Greetings, -- Francesco Ficarola Presidente LUG-PV

[Tinyos-help] TOSSIM and cycles

2010-07-29 Thread Newlyn Erratt
All: I am trying to determine if there is a way to find cycles in TinyOS. I know that I can find time but is there any simple method for cycles? I do know that TOSSIM isn't cycle accurate but I need a ballpark estimate between two different applications. Thanks for any help. Newlyn

Re: [Tinyos-help] Removing Applications from Motes

2010-07-29 Thread Jeongyeup Paek
It happens automatically under the hood, so you don't need to worry about it. The make command erases, and overwrites for you. If you do 'make telosb install ~~', you can see in your console --- mkdir -p build/telosb compiling Blink to a telosb binary ncc -o build/telosb/ma

Re: [Tinyos-help] TinyOS Environment Setup

2010-07-29 Thread Michael Schippling
OK, now things are getting odd...what do you get when you type "echo $CLASSPATH" in that shell? If it's not what you wanted, it may be that something is overwriting it later in the startup. You could look at all those files I mentioned to see if there are other CLASSPATH settings. I explicitly set

[Tinyos-help] TestPrintf failes to compile

2010-07-29 Thread Gerald Stanje
hi, i have the newest ubuntu and tinyos-2.1.1! i tried to compile the TestPrintf example but it fails for any reason! could someone tell me why? i attached my output: r...@ubuntu:/opt/tinyos-2.1.1/apps/tosthreads/apps/TestPrintf# make telosb mkdir -p build/telosb compiling TestPrintfAppC to

[Tinyos-help] MFP MAC

2010-07-29 Thread Obaid Salikeen
Hi, I am just looking for MFP-MAC implementation( TinyOS 2.x) for doing some evaluation. If any body already have the code, or know a place to get it, it will be really nice to share it with me. Thanks a lot Obaid ___ Tinyos-help mailing list Tinyos-he

Re: [Tinyos-help] TestPrintf failes to compile

2010-07-29 Thread Jeongyeup Paek
you are compiling a tosthread app. try "make telosb threads". - jpaek On Thu, Jul 29, 2010 at 12:29 PM, Gerald Stanje wrote: > hi, > > i have the newest ubuntu and tinyos-2.1.1! > i tried to compile the TestPrintf example but it fails for any reason! > could someone tell me why? > > i attached

Re: [Tinyos-help] tinyos 2.x environment in cygwin

2010-07-29 Thread Yee Wei Law
The TinyOS wiki is very clear about this. If all else fails, you can always define the environment variables in Contro Panel -> System Properties -> Advanced -> Environment Variables. On 29 July 2010 00:17, H S wrote: > Hey, > > I don't see much change in your command then what i am puting in >

[Tinyos-help] Oscilloscope

2010-07-29 Thread CHEN WEIMING
Hello, all: I edited the java code in Oscilloscope to display the data received, in the Node class, I have the following function to update data: void update(int type, int reading) { for (int i=Store-1;i>0;i--) Data[type][i] = Data[type][i-1]; Data[type][0] = reading;

Re: [Tinyos-help] TOSSIM and cycles

2010-07-29 Thread Muhammad Hamad Alizai
There is this function in sim_tossim.c sim_time_t sim_time(); It returns the simulation ticks (simulation cycles). TOSSIM has 100 ticks per second. However, the simulation clock only gets incremented at the start of new simulator event, the processing time is not captured by the simulatio

[Tinyos-help] TOSSIM, TinyOS, and Multimedia Sensor Networks

2010-07-29 Thread Hassan Abid
Dear all, I have one question in mind. is TinyOS , TOSSIM capable for the simulation of image/video coding and transmission? Like for example ns-2 is quite capable. Regards -- Hassan Abid MS EE Student ___ Tinyos-help mailing list Tinyos-help@