[Tinyos-help] how to display signed data in oscilloscope app(TinyOS 2.x)

2007-05-16 Thread Firat TARAKTAS
Hi to all, My problem is to display the signed data in oscilloscope application in TinyOS 2.x? In TinyOS 1.x, modifying apps/oscilloscope/OscopeMsg.h uint16_t data[BUFFER_SIZE] as int16_t data[BUFFER_SIZE] and recompiling java tools solved my problem. But in TinyOS 2.x, I modifed

[Tinyos-help] Motes stopped transmitting

2007-05-16 Thread Ali Mir
Hello friends, Yesterday I was working with mica2 motes on Tinyos-1.x and I found out that my mica2 motes stopped transmitting data. It seems the radio stopped working on all the 4 motes I have. I think the motes are getting programmed incorrectly. I had no such problem earlier. Do you think

[Tinyos-help] Surge program in tmote

2007-05-16 Thread aS iF
Hi, I want to know if anybody have run surge program in Tmote Invent, there is some problem. if yes, plz. fwd the that program, and also want to know , if anybody have making Delta two way. \Asif ___ Tinyos-help mailing list

[Tinyos-help] [RQ] PowerTOSSIM

2007-05-16 Thread khawla Lahamar
Hi all I would like to know how PowerTOSSIM can calculate the energy dissipation in a mote. And please can someone give me a like for more details for PowerTOSSIM: the only link I have is: http://www.eecs.harvard.edu/~shnayder/ptossim/install.html Thanks in advance -- Khawla

[Tinyos-help] write data on telosb

2007-05-16 Thread Leonardo
Hy, can i know what are metods for write data on telosb? i have to write data that i receive from radio and log it in telos... i must write in flash or in eeprom please help me beacuse i'm newbbie... thanks -- Leonardo Cicogna ___ Tinyos-help

FW: [Tinyos-help] msp430-ld compile error, moteiv

2007-05-16 Thread Munaretto, Daniele
Dear all, I'm forwarding these mails of yesterday about a compile error using moteiv. Everything is explained in the mails below. [..] However, I tried using small packets to send on the air and I don't get any error (but only below 34 bytes of payload for tmote, 18 for telos). But this is

[Tinyos-help] problem with TOSSIM

2007-05-16 Thread khawla Lahamar
Hi all thanks for all helps i'm working with Tinyos1.15 windows XP I'm afraid I have a problem with Tinyviz: I cant obtain any debug message, radio links, power simulation ... I followed all the instruction in the tutorial but no issues! I obtainjust the windows Tinyviz with nodes in the left

[Tinyos-help] Re: problem with TOSSIM

2007-05-16 Thread khawla Lahamar
hi can this due to I haven't any hardware mote? Thanks again -- Khawla 2007/5/16, khawla Lahamar [EMAIL PROTECTED]: Hi all thanks for all helps i'm working with Tinyos1.15 windows XP I'm afraid I have a problem with Tinyviz: I cant obtain any debug message, radio links, power simulation ...

Re: [Tinyos-help] Why the sample frequency is limited to 31Hz using Tinyos2.0

2007-05-16 Thread Hugo Sousa
For stream reading you have to use AccelReadStreamP and AdcReadStreamClientC, but why don't you use the component AccelXStreamC? You don't have to write your own component. Note: you have to post a buffer for every read you do Cheers, Hugo On 5/16/07, Fangming Zhang [EMAIL PROTECTED] wrote:

R: [Tinyos-help] write data on telosb

2007-05-16 Thread Ciro Cardone
See SenseLightToLog, here is used Logger, a component that help you to write a lines of 16 bytes to the eeprom. To try this on Tossim tou must run main with the option –ef=”eeprom.dat” For example tinyviz –run “main.exe –ef=\”C:\\EEPROM.dat\” “ 5 this create an image of the mote

[Tinyos-help] Help with PRR in TinyOS2.0.1

2007-05-16 Thread eamin_winfor
Hi ALL I'm working with TinyOS2.0.1, now a problem about PSS(packet reception rate) has puzzled me for a long time. I don't know how can i get the PRR( packet reception rate) under tinyos2.0.1, which function or interface should be used? Any helps would be really appreciated. Best

Re: [Tinyos-help] how to implement multi-hop routing between nodes?

2007-05-16 Thread Alexander Becher
* Derek FOol: Hi all, I've read a page about Multihop Routing, but i seems to route between nodes and base station. I wanna do that between nodes coz there's no base station in my app. Could T1.x support it and where can I find the tutorial? Thanks! It's not simple. Point-to-point routing

[Tinyos-help] how to display RSSI

2007-05-16 Thread CASTEL Myriam
Hi, I know this subject was often discuted but I don't really understand how I can optain and display the value of the rssi. - I tried msg_ptr-strength in TOSBase but I don't know how to see the value (with xlisten, what file should be modified to display the rssi) -When I try to write my own

Re: [Tinyos-help] how to display RSSI

2007-05-16 Thread Tsung-han Lin
Hi, TOSBase does NOT transmit the strength (RSSI) thru UART. You need to retrieve the strength value in TOSBase and store it somewhere in your msg, and then you can see the value using any kind of com port listener. --Han - Original Message - From: CASTEL Myriam [EMAIL PROTECTED] To:

[Tinyos-help] Plzz unsubscribe me from the mailing list

2007-05-16 Thread Supratik Dey
Hi I am unable to unsubscribe myself from the mailing list. plzz remove my name from the mailing list. can any body tell me how to unsubscribe !! Please inform me. Thanks. -- Supratik Dey mob:- 09433396702 email:[EMAIL PROTECTED] ___

Re: [Tinyos-help] Why the sample frequency is limited to 31Hz using Tinyos2.0

2007-05-16 Thread Fangming Zhang
Hi, Do you mean that I use the component AccelXStreamC in DemoSensorStreamC like following: generic configuration DemoSensorStreamC() { provides interface ReadStreamuint16_t; } implementation { components AccelXStreamC, AccelYStreamC; ReadStream = AccelXStreamC.ReadStream; ReadStream =

[Tinyos-help] How to find lost no of packets

2007-05-16 Thread manu suryavansh
Hi, I am using T1 and multihop application with tmote sky. I want to know how can I find out that how many packets have been lost? What happens if the acknowledgment also gets lost?. Thank you Manu Suryavansh - Park yourself in front of a world of

Re: [Tinyos-help] how to display signed data in oscilloscope app(TinyOS 2.x)

2007-05-16 Thread Michael Schippling
It may be that the nx implementation is not complete on the Java side. Without seeing the error and the code it's hard to tell. Can you post the relevant oscope and message code, and the actual error text? MS Firat TARAKTAS wrote: Hi to all, My problem is to display the signed data in

Re: FW: [Tinyos-help] msp430-ld compile error, moteiv

2007-05-16 Thread Joe Polastre
Your code section (which is 48k on Tmote Sky, but 128k on MicaZ) is too large. This is the .text error that msp430-ld is giving you. -Joe On 5/16/07, Munaretto, Daniele [EMAIL PROTECTED] wrote: Dear all, I'm forwarding these mails of yesterday about a compile error using moteiv. Everything is

Re: [Tinyos-help] Motes stopped transmitting

2007-05-16 Thread Michael Schippling
I'd expect that something has gone wrong with your TOSBase code, or the basestation hardware, rather than _all_ the motes. Start by checking each component. And make sure you use the same freq in all your compiles...you can put that CFLAGS define in the Makelocal file so you don't have to type it

[Tinyos-help] Problem compiling deluge in TinyOS

2007-05-16 Thread Luigi
Hi to all, I'm Italian. Sorry for my English, but I don't speak a good English. :) I'm using TinyOS with a TMote Invent sensor. I'm configuring TinyOS and I've a problem with Deluge class: when I do make in /opt/tinyos-1.x/tools/java/net/tinyos/tools$ directory I've over 100 erros and 1 error

[Tinyos-help] how do i aloocate memory for a two dimension array

2007-05-16 Thread Itamar Amsili
Hello all, We are using mica2 and mts300 sensor boards and we have a problem using functions like memset and memcpy. We are using tinyos 2.x and we wanted to know is there any way of doing that?Do we need to include a specific header file? any help will be much appreciated. thanks in advance,

Re: [Tinyos-help] Why the sample frequency is limited to 31Hz using Tinyos2.0

2007-05-16 Thread Hugo Sousa
Generic components have to be instantiated, you're already using that, when you instantiate DemoSensorC in your configuration file (GetAccelAppC.nc i suppose) Note: you don't have to place every sensor component inside a DemoSensor file, you can just wire the AccelXStreamC and AccelYStreamC

Re: [Tinyos-help] Plzz unsubscribe me from the mailing list

2007-05-16 Thread Marcel
Yes I can. It is as easy as subscribing. Just enter your email in the corresponding field on the current page: https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help Good luck! Supratik Dey schrieb: Hi I am unable to unsubscribe myself from the mailing list. plzz

RE: [Tinyos-help] how do i aloocate memory for a two dimension array

2007-05-16 Thread Ben Buckner
Hello all, We are using mica2 and mts300 sensor boards and we have a problem using functions like memset and memcpy. We are using tinyos 2.x and we wanted to know is there any way of doing that?Do we need to include a specific header file? Any help will be much appreciated. thanks in

[Tinyos-help] Compiling to others platforms

2007-05-16 Thread jose m
I have a running system implemented for a mica2 mote. Now, I want to change the mote microcontroller from an ATMega128 to an AT90Can128. Several registers and interrupts address changes, and the CAN Bus functionallity is added, so: There is an easy way to add a new platform to TinyOS? Can I add

Re: [Tinyos-help] CC2420 higher RX consumption than TX

2007-05-16 Thread André Miguel de Almeida Marrão Rodrigues
Hello As you can see, www.cs.berkeley.edu/~culler/papers/spots05-telos.pdf, table 3. The more robust modelations make a price on the energy waste at reception. André - Original Message - From: Philip Levis [EMAIL PROTECTED] To: Joan Cortes [EMAIL PROTECTED] Cc:

Re: [Tinyos-help] how do i aloocate memory for a two dimension array

2007-05-16 Thread Michael Schippling
If it's a compiler whine about the function prototype (arguments and return value) then the header file is the thing you want... memset() appears to be in string.h Otherwise please send the actual error text or a more complete description of the problem and code. However the subject of the

[Tinyos-help] How could the CntToLedsAndRfm app to be used in the platform of CC1100 RF chip ?

2007-05-16 Thread liangjing
Hi, all I'm trying to use the CntToLedsAndRfm app in our mica2 platform. We has changed the CC1000 chip of mica2 to CC1100 due to the better RF performance. But when I try to make mica2 install the app on our new platform, it prompts such errors, $ make mica2 install mkdir -p build/mica2

Re: [Tinyos-help] [RQ] PowerTOSSIM

2007-05-16 Thread Sarfraz Nawaz
Have a look at their SenSys paper http://www.eecs.harvard.edu/~shnayder/papers/sensys04ptossim.pdf On 5/16/07, khawla Lahamar [EMAIL PROTECTED] wrote: Hi all I would like to know how PowerTOSSIM can calculate the energy dissipation in a mote. And please can someone give me a like for more

Re: [Tinyos-help] tos-check-env

2007-05-16 Thread direct deposit
The path is my CLASSPATH is like c:/cygwin/opt... What I printed out is after the script processed the path. The line gives me trouble is open CYGPATH, cygpath -w $tosjarpath 21 | or die couldn't execute cygpath: it is not PATH.; I think the problem is somehow in my cygwin, I cannot execute

[Tinyos-help] TX underflow problem

2007-05-16 Thread 정계명
Hello all I’m testing Mesh Routing in Tinyos-2.x. During the test, nodes send a lot of broadcast message. All node receive and send it then TX underflow takes place The node which has TX underflow fails to send messages. Therefore, I included in /opt/tinyos-

Re: [Tinyos-help] tos-check-env

2007-05-16 Thread Michael Schippling
in my install cygpath is in /usr/bin, which should also be in your PATH. Since I don't use T2 I don't seem to have tos-check-env so I can't be of any help... MS direct deposit wrote: The path is my CLASSPATH is like c:/cygwin/opt... What I printed out is after the script processed the path.

RE: R: [Tinyos-help] write data on telosb

2007-05-16 Thread Micfox Micfox
I have exactly the same requirement and I also tried Logger.. But obivously Logger is not supported in telosb (when you tried to compile SenseLightToLog in telosb platform, there will be heaps of something undeclared problem). You can try.. From: Ciro Cardone [EMAIL PROTECTED] To:

[Tinyos-help] Is it possible to have one MessageListener for multiple types of packets?

2007-05-16 Thread Micfox Micfox
Hi, In tutorial 6 of Tinyos-1.x, Is it possible to register the Message listener for multiple types of messages? (In GraphPanel.java, there are following codes) == // OK, connect to the serial forwarder and