[Tinyos-help] How to display sensor data using Moteview

2008-04-09 Thread Dhivya G
Hai, I am using crossbow Professional kit consisting of Micaz motes,MIB520 programming board and MTS400 sensor board. I want to know whether I have to program Micaz mote to collect data from sensor using Moteview.If so how I have to program Micaz mote. -- G.Dhivya

[Tinyos-help] How to display sensor data using moteview

2008-04-09 Thread Dhivya G
Hai, I am using crossbow Professional kit consisting of Micaz motes,MIB520 programming board and MTS400 sensor board. I want to know whether I have to program Micaz mote(connected to mib520) to collect data from sensor using Moteview.If so how I have to program Micaz mote. I Connected one

Re: [Tinyos-help] Minimizing RAM consmption

2008-04-09 Thread Michiel Konstapel
The maximum is 256 bytes of payload because the TinyOS radio code uses uint8_t length values; your radio may have a smaller maximum. Given a certain bit error rate, I suppose a packet twice as long is twice as likely to be corrupted. I'm sure there's publications on this topic, but I don't know

Re: [Tinyos-help] How to display sensor data using moteview

2008-04-09 Thread Dhivya G
Hi, I programmed the mote(supposed to be the base station that is connected to mib520) with XMeshBase_2420_hp under C:\Program Files\Crossbow\MoteView\xmesh\micaz\XMeshBase. But still I am not able to display sensor data in pc. Regards, Dhivya. On Wed, Apr 9, 2008 at 1:48 PM, Marco Antonio

Re: [Tinyos-help] Minimizing RAM consmption

2008-04-09 Thread Flavio Pompermaier
Title: RE: [Tinyos-help] Minimizing RAM consmption Ok..thanks for the replies however..--- Mer 9/4/08, Michiel Konstapel [EMAIL PROTECTED] ha scritto:Da: Michiel Konstapel [EMAIL PROTECTED]Oggetto: RE: [Tinyos-help] Minimizing RAM consmptionA: [EMAIL PROTECTED]Cc:

Re: [Tinyos-help] How to display sensor data using moteview

2008-04-09 Thread Siirtola Harri
Have you programmed other motes with the XMTS400 app? I think they don't come preprogrammed from factory. Regards, Harri From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dhivya G Sent: Wednesday, April 09, 2008 11:50 AM To: Marco Antonio

Re: [Tinyos-help] Error compiling Oscilloscope with IRIS mote

2008-04-09 Thread Eva Maria Garcia
Thanks, the problema is solved. Eva ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] python configuration

2008-04-09 Thread funofnet Funofnet
Hi , I encountered a blocking problem when compiling Tossim application in Tinyos 2. I found that there are other persons who got the same error and the answer was : you should configure your python Unfortunately, I didn't find how. please help me ( I am blocked) this is the error

[Tinyos-help] Radio models

2008-04-09 Thread Nahr ...
Hello, Are there a difference between radio models in TinyOS 1 and TinyOS 2. Thanks ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] Error on executing CntToLedsAndRfm

2008-04-09 Thread Arun Kumar Jayaraman
Hi all, I tried to run CntToLedsAndRfm as mentioned in http://www.tinyos.net/tinyos-1.x/doc/tutorial/lesson5.html But I am getting the message as given below. 0: ERROR: Unable to create EEPROM backing store file. 0: ERROR: Unable to create anonymous EEPROM region. SIM: EEPROM system

[Tinyos-help] TsyncC and Deluge

2008-04-09 Thread [EMAIL PROTECTED]
Hi, I want to measure time that Deluge T2 use for disseminating a new image. For this scope I need that motes are time syncronized so I can measure what I need. (Once motes are syncronized, BaseStation before disseminate -d command read current time and last mote that receiving image read

[Tinyos-help] Fw: error making Blink application .. fixed

2008-04-09 Thread Calvin Bebermeyer
After I sent this email, I located the information in the archives that I needed to fix this error. While Cygwin was not very cooperative, I finally was able to remove the old TinyOS tools then use the --ignoreos option to force the newer versions of these tools onto the system. The following

Re: [Tinyos-help] TsyncC and Deluge

2008-04-09 Thread Murray, Ben
I know this isn't really hugely helpful ... but what you'll have to do is use a less-complex time sync. Depending on the accuracy you are interested in (~1us, ~1ms, ~1s) maybe the recently-discussed time sync stuff in tinyos-devel will be more compact/useful? Or, if you can accept some error in

[Tinyos-help] Sending msg type from pc

2008-04-09 Thread Nicole Neureiter
Hi, I have the problem, that for verification I have to send the same message I have received via Java from the motes back to the motes. This means I use the same message type. Problem is I can't forward the original message because I get a NullPointerException (This problem was send by someone

Re: [Tinyos-help] Sending msg type from pc

2008-04-09 Thread Eric Keller
I'm just making things up because I haven't seen your code, but are you trying to send back the same message packet that you just received? My thought is that the packet is being deallocated before you send it. The solution would be to allocate your own packet, copy, and then send the copy.

Re: [Tinyos-help] msp430 platform bootstrap

2008-04-09 Thread Greg Hackmann
Kami Amaterasu wrote: Also, I would like to try this app on a Telos B. Is there any way to debug an app on this platform with msp430-gdb (on Linux)? TI sells a USB debugging interface (MSP-FET430UIF) that can be used with the TelosB, and they include a proxy application that lets you use it

[Tinyos-help] SPI: Flash and Radio concurrency on Tmote sky

2008-04-09 Thread Flavio Pompermaier
Hi to all,I've a question about the shared SPI bus between Radio and Flash modules on Tmote Sky:is there any problem if a node is writing to flash while another mote is sending a packet to it? Could the radio loss the packet if I do not use the Packet Link layer of TinyOs and setting retries

Re: [Tinyos-help] Sending msg type from pc

2008-04-09 Thread Michael Schippling
With Java Garbage Collection, this, supposedly, can't happen. If you have an active reference (pointer) to an object, the object does not get 'deallocated'. NullPointer usually means just that, a reference that is zeroed out. So, we'd have to see the code and the actual error messages to make

[Tinyos-help] compiling with tossim

2008-04-09 Thread funofnet Funofnet
Hi, Please, I installed TinyOS 2 on windows using cygwin and when I compiled Blink app by this command: make micaz sim no error msg appeared (*** Successfully built micaz TOSSIM library.) But when I compile with this command make micaz sim-cygwin I had this error: Couldn't execute avr-gcc

[Tinyos-help] What is the maximum timer interval?

2008-04-09 Thread Ruoshui Liu
Dear all, I have a question regarding the maximum timer interval for the TimerC. I am implementing a measurement which needs the long time interval. Do you know the maximum value of the time interval with MicaZ? TimerC uses the Timer which is 16 bits, so I guess that's a theoretical max. Can

[Tinyos-help] Including/embedding C code in a nesC application

2008-04-09 Thread antonio gonga
Hey all, I want to use a precise timer so that I would like to use the Unix struct timeval to get the time in microseconds The small code bellow gets the time in microseconds #include stdlib.h #include sys/time.h struct timeval tv; unsigned long getTime(){ gettimeofday(tv, NULL) return

[Tinyos-help] one question about MultihopOscilloscope

2008-04-09 Thread Chris Yao
Hi, I tried the following with one micaz mote coupled with mts300 sensor board: 1. I upload Oscilloscope application to this micaz+mts300. I can see the green light toggling. That is, whenevern one message is sent, led1 toggles; Everything is fine here. 2. Then I upload MultihopOscilloscope

Re: [Tinyos-help] Including/embedding C code in a nesC application

2008-04-09 Thread renjie huang
I think maybe you are doing that for doing simulation in TOSSIM. By default, nesc does not include the the directories such as /sys.. You just need to add those directories in makefile: PFLAGS += -I... An intermediate product of NESC compiler is app.c, that means all code are tranlated into c

[Tinyos-help] How to send a message from PC to mote through UART?

2008-04-09 Thread Li Jianfeng
Hi all, I am trying to send control messages from PC to motes through UART. Since the program run on PC was written in C#, I could not use the java code directly. I tried to confirm the package form by modifying the TestSerial application as follows: /*TestWriteSerial.h*/ #ifndef

Re: [Tinyos-help] How to display sensor data using moteview

2008-04-09 Thread Dhivya G
Hai, Thanks for your reply. That guide is very useful for me. Regards, Dhivya On Wed, Apr 9, 2008 at 9:00 PM, Giri Baleri [EMAIL PROTECTED] wrote: Please refer to the attached programming guide for step-by-step details. Regards, Giri -- *From:* [EMAIL

Re: [Tinyos-help] How to send a message from PC to mote through UART?

2008-04-09 Thread Greg Hackmann
Li Jianfeng wrote: And then I send a package 00 FF FF 00 00 01 00 09 05 from UART, but nothing happened, even the red light that indicates having receive a message from UART did not on at all. I modified the package as the the format of UART receiving message from mote, that is 7E 45 00 FF