[Tinyos-help] unable to inject packet from tossim

2007-12-06 Thread Vijayant Bhatnagar
Hi, The following code doesnt work for injecting packets. from RadioCountData import * msg = RadioCountData() msg.set_type(1); msg.set_data(55); pkt = t.newPacket(); pkt.setData(msg.data); pkt.setType(msg.get_amType()) pkt.setDestination(3); pkt.setSource(6); my struct in .h file is: typedef

[Tinyos-help]: Which file has the definition of TOS_LOCAL_ADDRESS??

2007-12-06 Thread Renee Azhen
Dear all: Could anyone tell me: In which file "TOS_LOCAL_ADDRESS" was declared and defined?? Really Thanks Sam - 进入雅虎游戏嘉年华,赢取液晶显示器! ___ Tinyos-help mailing list Tinyos-help@Millennium.Berkeley.EDU https://w

[Tinyos-help] Re: Tinyos-help Digest, Vol 56, Issue 32

2007-12-06 Thread kanhaiya lal yadav
ery often like out > 35000 packets only few(8-9) of them got repeated. > >Thank you >Manu Suryavansh >UF > > >----- >Never miss a thing. Make Yahoo your homepage. >-- next part -- >An HTML attachment was scrubbed... >URL:

[Tinyos-help] MultiHopRouter/TinyOS-2.x

2007-12-06 Thread antonio gonga
hey all, I'm new to TOS-2.0 and I'd like to know which folder contains the implementation of MultiHopRouter like in TOS-1.x. If there's another equivalent to MultiHop how is it called? I need a routing algorithm that's why I'm asking you. Is there any routing algorithm that can route packets in R

[Tinyos-help] setting value of nesC variable using python

2007-12-06 Thread Vijayant Bhatnagar
Hi, I need to set the value of variable in nesc using python. Can anyone guide me ? I read the tutorial and it has given description on how to GET the variable. I couldnt find information to set the variable. Any help is greatly appreciated. Any hint would also suffice. Thanks, Vijayant _

Re: [Tinyos-help] Timer running with TOSSIM 2.x

2007-12-06 Thread Vijayant Bhatnagar
i figured out the problem. I have fixed it and it is working perfectly!!! There was a minor fault in wiring. thanks, Vijayant Bhatnagar Rutgers. On Dec 6, 2007 5:42 PM, Vijayant Bhatnagar <[EMAIL PROTECTED]> wrote: > Secondly, > for the two periodic timers (with different periods), when i do ge

Re: [Tinyos-help] Support Vector Machine on sensors

2007-12-06 Thread AIGroup
>Weather or not your SVM code would run on a mote depends on the specifics of the problem you want to >solve. Also, you didn't say if you want to run the training on the mote, or just the classifier. I'm interested to run a non linear regression. Does anybody know any implementation of SVM based o

Re: [Tinyos-help] Timer running with TOSSIM 2.x

2007-12-06 Thread Vijayant Bhatnagar
Secondly, for the two periodic timers (with different periods), when i do getNOW(), i get the same value. From the previous threads, i could find out that there is only one reference timer. But does this mean that I can't have two timers ? How can i get the exact value of timer ? I tried doing get

Re: [Tinyos-help] Timer running with TOSSIM 2.x

2007-12-06 Thread Vijayant Bhatnagar
Even I am facing similar kind of problem. Can anyone help me please. help appreciated. thanks, Vijayant On Dec 6, 2007 1:28 AM, EunKyung Lee <[EMAIL PROTECTED]> wrote: > Dear. > > I made two timer and generate 10 nodes and run my application on Tossim. > But both of timers are fired at the same

Re: [Tinyos-help] Support Vector Machine on sensors

2007-12-06 Thread Michael Schippling
If you can do it with a 16 bit integer multiply using less than 4KB of RAM you can do it on a Micaz... MS AIGroup wrote: Hi all. I'm interested to develop Support Vector Machines using Micaz motes and TinyOs But, I have any doubts about power of computation of these sensors. Does anybody hav

[Tinyos-help] Sequence Number in Multihop application

2007-12-06 Thread manu suryavansh
Hi, I am using the sequence number in my multihop application and sometime I am receiving packets with the same sequence number multiple times at the serial port with the same data. Is this because the same packet may be reaching the base node through multiple routes? Below are the sequence num

[Tinyos-help] Support Vector Machine on sensors

2007-12-06 Thread AIGroup
Hi all. I'm interested to develop Support Vector Machines using Micaz motes and TinyOs But, I have any doubts about power of computation of these sensors. Does anybody have an experience about this topic? Thanks in advance Roberto ___ Tinyos-help mailin

Re: [Tinyos-help] - A mote capture and send the message to two other

2007-12-06 Thread Michael Schippling
You need to wait for the sendDone() of the first message before posting the send of the second, do the "post send03()" for withing sendDone(). MS Tiago Wanderley wrote: Hi, first, I would warn that my English is not good. =D I'am with problem, captured a date e turn on leds if this value is

[Tinyos-help]: How to study protocol LPES? Any good suggestion??

2007-12-06 Thread Renee Azhen
Deal all: I want to make a small revision to LPES and now trying to study the Mechanism of protocol LPES with files MultiHopLEPSM.nc and MultiHopEngineM.nc. But the code in those files are too complex, especially to a newer who just comes to the TINYOS area two weeks. I can only move on the

[Tinyos-help] - A mote capture and send the message to two other

2007-12-06 Thread Tiago Wanderley
Hi, first, I would warn that my English is not good. =D I'am with problem, captured a date e turn on leds if this value is greater than 0x300. After I sent the value for other two motes, using the tasks send02() and send03(). The task send02() is executed with success, the mote of id 02 receive t

Re: [Tinyos-help] How to install an application to a mote/XubunTOS2.0

2007-12-06 Thread Philip Levis
On Dec 6, 2007, at 7:28 AM, antonio gonga wrote: Hey all, I'm new to TinyOS-2.0. I installed xubunTOS-2.0 and I want to compile and install the Blink application. I changed alitle bit the application(timers) but when I execute the command "make tmote" I don't see any change.. Please read

回复: [Tinyos-help] dbg problem

2007-12-06 Thread Renee Azhen
hi, cqu_tyj <[EMAIL PROTECTED]> 写道:hi all, cqu, make sure you have recomplied it. Azhen In "nido.nc" some code as follow: command result_t RadioSendMsg.send(TOS_MsgPtr msg) { dbg(DBG_AM,"TossimPacketM: Send.send() called\n"); return packet_sim_transmit(msg); }

[Tinyos-help] How to install an application to a mote/XubunTOS2.0

2007-12-06 Thread antonio gonga
Hey all, I'm new to TinyOS-2.0. I installed xubunTOS-2.0 and I want to compile and install the Blink application. I changed alitle bit the application(timers) but when I execute the command "make tmote" I don't see any change.. _

Re : [Tinyos-help] Urgent :is there a symbol named _start in tinyos ????!!!!!

2007-12-06 Thread mejda chouaieb
when I compile now I have:but I still don't understand what is this _start symbol warning !! [EMAIL PROTECTED] /cygdrive/c/jennic/cygwin/opt/tinyos-2.x/apps/Null $ make isense mkdir -p build/isense compiling NullAppC to a isense bina

[Tinyos-help] dbg problem

2007-12-06 Thread cqu_tyj
hi all, In "nido.nc" some code as follow: command result_t RadioSendMsg.send(TOS_MsgPtr msg) { dbg(DBG_AM,"TossimPacketM: Send.send() called\n"); return packet_sim_transmit(msg); } I do export DBG=am, but in tinyviz I couldn't see the debug message"TossimPacketM: Send.send() called" p

[Tinyos-help] Urgent :is there a symbol named _start in tinyos ????!!!!!

2007-12-06 Thread mejda chouaieb
Hello, I'm porting TinyOS to Jennic, and now I can compile the Null application for my new platform but I still have one error that I can't understand, when I compile I have : ___ $ make isense mkdir -p build/isense compi