[Tinyos-help] SerialPacket

2008-11-05 Thread Tomsy Paul
Sir, I use xubuntos from stanford to study tinyos. when i make an application - RadioCountToLeds for micaz, an error is seen /opt/tinyos-2.1.0/support/sdk/java/net/tinyos/message/Message.java:84: cannot find symbol symbol : class SerialPacket location: class net.tinyos.message.Message pr

Re: [Tinyos-help] Maximum packet data length

2008-11-05 Thread João Paulo Amaro da Costa Luz Carneiro
Hi, Thanks for the link. After some tests I could determine the following: - The maximum message size I could have was 106Bytes (my message structure has 5 nx_uint16_t fields and one array of 48 nx_uint16_t). - The message is only sent if DTOSH_DATA_LENGTH is set to a value between 114 and 24

Re: [Tinyos-help] hanging problem

2008-11-05 Thread Eric Keller
I have no idea why this happens, but I've always found that unplugging/replugging the base station mote fixes this problem. Eric 2008/11/5 Mark Tween <[EMAIL PROTECTED]>: > > > > Hi, > > I have problem when I run my code it print resynchronize then it stop from > send receive any thing in other

[Tinyos-help] hanging problem

2008-11-05 Thread Mark Tween
Hi, I have problem when I run my code it print resynchronize then it stop from send receive any thing in other time it work well I do not change any code Description of code ( base station{that came with tiny I do not change it} – and other sensor send data to the BS ) I use tinyos 2.x ,, tel

[Tinyos-help] How to use low level interrupt

2008-11-05 Thread Li, Zhen Li
Hi Currently I'm using IRIS and a MDA100CB board. I want to use the INT3 on the MDA100CB and I think that the INT3 in the MDA100CB is connected to the INT3 of the Atmega1281 on IRIS. I want to trigger the interrupt in a rising edge and for test, I have a 3.3k resistor between INT3 and GND on MD

Re: [Tinyos-help] sht11 on IRIS

2008-11-05 Thread Janos Sallai
It shouldn't be too complicated. Cretate a new directory called sht11 under tos\platforms\iris\chips. Copy all files from tos\platforms\telosa\chips\sht11to tos\platforms\iris\chips\sht11. Then, add %T/platforms/iris/chips/sht11 to the includes list in %T/platforms/iris/.platform. You will need to

Re: [Tinyos-help] CollectionSenderC.send()

2008-11-05 Thread Omprakash Gnawali
On Wed, Nov 5, 2008 at 4:39 AM, Daniel Patrick <[EMAIL PROTECTED]> wrote: > Hello All, > > I have implemented an application with multihop communication. > It's working fine in TOSSIM, however when I upload the application to > motes, the sendDone() is not signaled. > What are the possible causes t

[Tinyos-help] Base mote ID in surgetelos

2008-11-05 Thread ranal fernando
Dear all, Is it possible to have a number other than 0 for the base mote in surgetelos? If so where can I change this? Thanks in advance Fernando _ Get 5 GB of storage with Windows Live Hotmail. http://windowslive.com/Explore

[Tinyos-help] Base mote ID in surgetelos

2008-11-05 Thread ranal fernando
Dear all, Is it possible to have a number other than 0 for the base mote in surgetelos? If so where can I change this? Thanks in advance Fernando _ See how Windows® connects the people, information, and fun that are part of

[Tinyos-help] LQI/CTP data

2008-11-05 Thread João Paulo Amaro da Costa Luz Carneiro
Hi, Is there any other collection protocol for tos2 besides CTP and LQI? Is LQI still only available for Can someone give me a paper comparing these to protocols? I've found some discussion in the mailinglist but is there a paper / report comparing existing collection protocols? Thanks Joao

[Tinyos-help] receive and send

2008-11-05 Thread Lorena Aguirre
Hello, Could you have a look to my program? thanks!! Receive a message, save data timer (t2), send a message, save data timer (t3) includes CountMsg; module CountReceptorM { provides interface StdControl; uses interface ReceiveMsg; uses interface Leds; uses interface Timer; uses interface

Re: [Tinyos-help] Controlling Tmotes from PC

2008-11-05 Thread Michael Schippling
In T1 there was the SimpleCmd demo app that does some control functions. MS Eric Keller wrote: > If I was going to do that, I'd look at the printf library. Of course, it > sends data the other way, but it's a good start. > On the other hand, it makes much more sense to control the motes > over t

Re: [Tinyos-help] Controlling Tmotes from PC

2008-11-05 Thread João Carlos Giacomin
Dinesh, you can communicate to base station (the mote connected to PC) over a serial cable if you were using MIB510 programming board. There is a Java class to do that, but I have never used it. I have developped a C++ program to communicate to the base station. Then I can r

[Tinyos-help] how could I run Makefile.am

2008-11-05 Thread weiping SONG
Hi all, In tinyos-2.x/support/sdk/c, there is a Makefile.am, But I do not know how could I run it. Could you give me a help? Regards, Weiping ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu https://www.millennium.berkeley.edu/cgi-bi

[Tinyos-help] Movement Detector mts310

2008-11-05 Thread Rodrigo Muñoz
Hello I'm trying to make a movement detector (turn on RedLed with any movement) with micaZ and mts310 sensor board, I already done with timers like calling aplication checking AcceX-Y values every 1/2 sec, but i want to make a more eficient aplication implementing events. I finished a similar aplic

Re: [Tinyos-help] Controlling Tmotes from PC

2008-11-05 Thread weiping SONG
I think you might read the code of BaseStation, you can do something when node receive massage from serial port. weiping Eric Keller wrote: > If I was going to do that, I'd look at the printf library. Of course, it > sends data the other way, but it's a good start. > On the other hand, it make

Re: [Tinyos-help] Controlling Tmotes from PC

2008-11-05 Thread João Paulo Amaro da Costa Luz Carneiro
You could send serial messages from pc to mote. I don't remember but I think the oscilloscope example has something like this to update the sensing rate. Regards, Joao On 2008/11/05, at 15:41, Eric Keller wrote: > If I was going to do that, I'd look at the printf library. Of > course, it

Re: [Tinyos-help] the problem of installing the mib520cb 's driver

2008-11-05 Thread Janos Sallai
The driver should be included in kernel 2.6.16. Check dmesg before and after connecting the programming board to see if the driver module has been loaded. If yes, you should be able to see and use /dev/ttyUSB0 and /dev/ttyUSB1. Janos 2008/11/5 guoyuehua.cool <[EMAIL PROTECTED]> > > hi: > >f

Re: [Tinyos-help] Controlling Tmotes from PC

2008-11-05 Thread Eric Keller
If I was going to do that, I'd look at the printf library. Of course, it sends data the other way, but it's a good start. On the other hand, it makes much more sense to control the motes over the radio. Eric On Wed, Nov 5, 2008 at 8:36 AM, Dinesh Koya <[EMAIL PROTECTED]> wrote: > Hi all > > I am

[Tinyos-help] the problem of installing the mib520cb 's driver

2008-11-05 Thread guoyuehua.cool
hi: firstly,thanks for your reply.as the http://www.ftdichip.com/Drivers/VCP.htm website,i has downloaded the linux version of Virtual COM port (VCP) drivers.when i execute "make" for generating the module.the error is as following: error: /lib/modules/2.6.16/build/include/linux/modve

[Tinyos-help] Controlling Tmotes from PC

2008-11-05 Thread Dinesh Koya
Hi all I am doing a project in which I have a requirement to control tmotes  (connected to the USB ports of the PC) from the PC like switching ON/OFF their radios, changing the timer's firing periods,etc. I would like to know if there is some sample program in Tinyos to control the sensor nodes

[Tinyos-help] CollectionSenderC.send()

2008-11-05 Thread Daniel Patrick
Hello All, I have implemented an application with multihop communication. It's working fine in TOSSIM, however when I upload the application to motes, the sendDone() is not signaled. What are the possible causes to sendDone not to be signaled? Any ideias? The return from CollectionSenderC.send()