[Tinyos-help] Tinyviz Simulations

2006-09-22 Thread walid hamdi
Can anybody tell me please if there is a method to run simulation of different sensors on the same pc (if there is one), because i still don´t have my Hardware. I tried yesterday to simulate CntToLedsAndRfm and RfmtoLeds together but i could not due to the Tinyviz simulator crash.. Thank you

Re: [Tinyos-help] How to enable ACK on tmote

2006-09-22 Thread Pablo Gil Montaño
Yes, at the beginning means in StdControl.start()Andy Dalton [EMAIL PROTECTED] escribió: What does "at the beginning" mean? As far as I know, you have to callit *after* StdControl.init() completes (I've typically seen it calledin StdControl.start()).On 9/21/06, Pablo Gil Montaño <[EMAIL

Re: [Tinyos-help] Tinyviz Simulations

2006-09-22 Thread Firat TARAKTAS
Correct me if i am wrong, but as far as i know, tinyviz simulates only one application at a time. So you can not run CntToLedsAndRfm and RfmToLeds at the same time. If you want to look at another simulation environment that runs more than one application at the same time, visit

RE: [Tinyos-help] conflict flash-radio,micaz

2006-09-22 Thread Munaretto, Daniel
Thanks very much for your explanation. So you confirm the version of Xbow, that CSMA-CA is in micaz by default. BTW, during my tests, it seems true that there is a conflict between flash and radio on micaz. In fact now they survive after the reading-from-flash phase and they last for several

[Tinyos-help] math.h in telos

2006-09-22 Thread 박판근
I want to use some math function in sky tmote. But when i compile my application, thereare errors like 'undefined reference to `log' '. I also try to include header file math.h in my application. But it seems not to work this way. How can i use normal c function (like math.h) in tinyos? Could

[Tinyos-help] Tinyviz error?

2006-09-22 Thread ricardo tiago
Sometimes when i run tinyviz i get this exception: java.lang.ArrayIndexOutOfBoundsException: 500 = 500 I have both IBM SDK 1.42 and 1.5. This happens in both SDK's. Does anyone know why this happens? Ricardo ___ Tinyos-help mailing list

[Tinyos-help] Getting at the Node ID

2006-09-22 Thread Michael Collett
Title: Getting at the Node ID Hi, If I want to use a node id within my onboard program, how do I get it? Is it assigned to a variable name which I can use, or is there some kind of get() function? Cheers Mike ** Wireless Communications

Re: [Tinyos-help] Can i interface webcam with telos mote

2006-09-22 Thread Sean Walton
rajeev karothia wrote: Respected sir I am working on telos mote and i have to interface webcam with telos.but i don't have proper Module and Component to do this...can anyone know how can i capture and send Image via telos mote? thanking you Rajeev Since I have seen no one respond to

RE: [Tinyos-help] conflict flash-radio,micaz

2006-09-22 Thread David Moss
You're right, it's very concerning that TinyOS 1.x is as unstable as it is on mica- hardware. Your battery observation is exactly what is reflected on the datasheet though - 1.3V batteries in series = 2.6V, which is less than the 2.7V required to use the at45db flash. Deluge samples the

RE: [Tinyos-help] Getting at the Node ID

2006-09-22 Thread David Moss
Title: Message For TinyOS 1.x, use the preprocessor defined variable TOS_LOCAL_ADDRESS: if(TOS_LOCAL_ADDRESS == 0) { transmitter = TRUE; } For TinyOS 2.x, call AMPacket.address() -david -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf

[Tinyos-help] Help me. to use math function

2006-09-22 Thread 박판근
I want to use some math function in sky tmote.But when i compile my application, there are errors like ' undefined reference to `log' '. I can find log function in the file app.c for my application. It seems find math function from /opt/msp430/msp430/include/math.h.How can i use normal c function

[Tinyos-help] RE: Vanderbilt Acoustic Ranging on MicaZ

2006-09-22 Thread Sarfraz Nawaz
Hi Michael, Thanks for your helpful directions. I had followed your approach regarding Clock and TimerJiffyAsync and was able to compile the TestAcousticRanging appliation. However, when running I was always getting -1 as the distance between two motes. On further inspection I realized that I

[Tinyos-help] Can i download program to mica2 by JTAG?

2006-09-22 Thread Astral Kengink
Hi guys, I'm trying to download the Blink program using the JTAG debugger to the ATmega128L evaluation board. It's possible to use the AVR Studio, the most famous program to download and debug for AVR, to download the code compiled in C, but not nesC which also be downloadable but nothing happen.

RE: [Tinyos-help] USB to serial converter specification

2006-09-22 Thread Giri Baleri
The couple of adapters that we have tested/used are: Vendor Model Keyspan USA-19HS Belkin F5U109 We have found that not all adapters work reliably with all PC makes and operating systems. The issue is at higher baud rates. The FTDI chipset generally works better. I hope that

Re: [Tinyos-help] conflict flash-radio,micaz

2006-09-22 Thread Philip Levis
On Sep 22, 2006, at 7:56 AM, David Moss wrote: You're right, it's very concerning that TinyOS 1.x is as unstable as it is on mica- hardware. Your battery observation is exactly what is reflected on the datasheet though - 1.3V batteries in series = 2.6V, which is less than the 2.7V

RE: [Tinyos-help] conflict flash-radio,micaz

2006-09-22 Thread David Moss
Hah... you're right Phil as well, Phil, the battery voltage plays a huge part here. But I have also seen the micaz mote crash while testing file transfers from mote to mote, with both motes plugged into MIB520 boards. The file transfer worked great on tmote's, so I have yet to narrow down what

[Tinyos-help] Multihop in tmote

2006-09-22 Thread Pablo Gil Montaño
I'm trying to set up a multip-hop collection tree with tmote motes. I am using component MultiHop (moteiv/tos/lib/MultiHop), but I can't get it to work. The node attached to the USB is constantly sending a packet to the computer, regardless what the other motes are sending. Apart from that, using

[Tinyos-help] Can MoteIF receive unknown type message?

2006-09-22 Thread Fenghua Yuan
Hi, Does anybody know whether the java tool(Trawler or Surge) can receive unknown type message? Both of them are using MoteIF to receive and send message, which requires you to register the message type you are caring about.But is there a way to receive all messages including unregistered

Re: [Tinyos-help] Multihop in tmote

2006-09-22 Thread Joe Polastre
Have you tried using Delta and Trawler? Note that the mote connected to the PC must either be node id 0 or must communicate with a program on the host that informs the mote that it is the base station (such as Trawler) -Joe On 9/22/06, Pablo Gil Montaño [EMAIL PROTECTED] wrote: I'm trying to

[Tinyos-help] matlab +tinyos

2006-09-22 Thread neeraj sharma
hi i hav to take my binary image data in the form of packets from matlab to serial port and i m using matlab 7.0 version and tinyos 1.1 version so that i have to connect my matlab to serial comm port.i used connect('[EMAIL PROTECTED]:9001) and connect('[EMAIL PROTECTED]:telosb')

Re: [Tinyos-help] conflict flash-radio,micaz

2006-09-22 Thread Philip Levis
On Sep 22, 2006, at 8:37 AM, David Moss wrote: Hah... you're right Phil as well, Phil, the battery voltage plays a huge part here. But I have also seen the micaz mote crash while testing file transfers from mote to mote, with both motes plugged into MIB520 boards. The file transfer worked

Re: [Tinyos-help] Multihop in tmote

2006-09-22 Thread Crif1102
I'had the same problem..and now (today) it seems to work! Try to verify that UartDetectC recognize that mote was connected via USB... I found this problem. Perhaps one other problem was to strictly verify that base station don't comunicate with the sender mote...in one test after two minutes I

[Tinyos-help] question about packet yield

2006-09-22 Thread Demin Wang
Hi, allI am a little confused about the concept packet yield and how it is computed.My understanding is :For one sensor node as a receiver during a period of time,Packet Yied equals to (Number of actual received packets)/(Number of expected to receive pakects) and 1-packet yied is the packet loss