Re: [Tinyos-help] TOSThreads & TinyLD

2011-01-04 Thread Chieh-Jan (Mike) Liang
Hi Ranal, Each loadable TinyLD app is designed to be single-threaded. In fact, TinyLD does not expose any of the thread-manipulating commands. Thanks Mike On Jan 3, 2011, at 8:07 PM, ranal fernando wrote: > > hi all, > > i have another question. > > if i create a C app (in capp folder) hav

[Tinyos-help] T1 to T2, Micaz platform, TOSH_ASSIGN_PIN problem.

2011-01-04 Thread Gong Zhang
Hi all, I am porting my t1 code to t2 code. Here is the problem. I found the definition of TOSH_ASSIGN_PIN for Micaz platform changed. So could any one tell me how to get the "TOSH_ASSIGN_PIN" sentence be defined? (Which head file I should include?) Thanks! Gong -- View this message in conte

[Tinyos-help] sniffing blip-1.0 packets

2011-01-04 Thread Markus Becker
Hi, I am trying to sniff blip-1.0 traffic with TelosB motes. (Sniffing AM packets with BaseStation15.4 works for me without problems.) Currently, I can only see blip's broadcast packets (mostly Router Solicitation). In the sniffing application I have enabled CC2420_NO_ADDRESS_RECOGNITION and CC

Re: [Tinyos-help] How to transmit data

2011-01-04 Thread Sergio Valcarcel
Hi Sivasankar, this is easy ;-) There are a bunch of very good tutorials covering all the basic topics. This one is about radio transmission: http://docs.tinyos.net/index.php/Mote-mote_radio_communication Cheers, Sergio On Tue, Jan 4, 2011 at 8:15 AM, SHIVASANKAR GANESAN wrote: > Hi > > I n

Re: [Tinyos-help] WSN ?

2011-01-04 Thread Giovanni Ferrante
Hi, Yes, I have shimmer sensord, and I want to create real scenario , some nodes I want only to send information, and other to received and send information to server node (access point) Best Regards, Giovanni ___ Tinyos-help mailing list Tinyos-help@m

Re: [Tinyos-help] Multiple sends in TinyOS2.x through serial port with different kind of messages

2011-01-04 Thread Sergio Valcarcel
Hi, I finally implemented the queues and they work fine. Just one question, do you think it is a good idea? Eric, you suggested there may be another easier way but I did not grasp it. I had a look at SerialAMSender but I did not understand very much, :-( This is the code just in case somebody f

Re: [Tinyos-help] WSN ?

2011-01-04 Thread Wahid
good, coz shimmer already has a subdirectory in tinyos contrib directory and you can use real medical scenarios using them. well, I still suggest you to go through the basic tutorials given in the tinyos website to start from a very simple programs and learning how to compile programs and upload

[Tinyos-help] Downstream Message

2011-01-04 Thread ¯`•._.•Lance•._.•´¯
Hi all, I would like to know is there a way to send an activation message from base to the mesh network in order to activate a particular node ? I am using the tinyos 1.1 version provided by Crossbow. Is there any interface that i can make use of . Thanks Lance

Re: [Tinyos-help] CTP under high data rate?

2011-01-04 Thread Fabrice Dossin
Dear, Which hardware and which tinyos version do you use ? I was having such problem with IRIS motes. I have finally switched to another routing algorithm but I was still experiencing issues like this. Finally it was found as a bug inside the rf230 driver and was fixed on the trunk repository. I'v

[Tinyos-help] Convite para conectar-se no LinkedIn

2011-01-04 Thread Miguel Barroso tramite LinkedIn
LinkedIn Miguel Barroso ha chiesto di aggiungerti ai suoi collegamenti su LinkedIn: -- Davide, Eu gostaria de adicioná-lo à minha rede profissional no LinkedIn. -Miguel Accetta l'invito di Miguel Barroso http://www.linkedin.com/e/-528s01-giizc

Re: [Tinyos-help] Downstream Message

2011-01-04 Thread Michael Schippling
I managed to send messages from the host to a specific node ID over a single hop in the Moteworks system. I never tested multiple hops but hoped and assumed that they would work. Broadcast messages don't seem to work though. On the mote side config your receive message like this: // messages w

[Tinyos-help] Two components implements StdControl in same application

2011-01-04 Thread Edel A. Rodriguez Sanchez
Hi all. What mean that two components implements StdControl in same application. For example: -- implementation { components Main,SimulationM, ChannelM; Main.StdControl -> ChannelM.StdControl; Main.StdControl -> SimulationM; }

Re: [Tinyos-help] CTP under high data rate?

2011-01-04 Thread Miklos Maroti
Hi Sean, Can you try out the latest SVN repository from google code? (By the way, I think the issue Fabrice mentioned will not improve CTP) Best, Miklos 2011/1/4 Fabrice Dossin : > Dear, > Which hardware and which tinyos version do you use ? I was having such > problem with IRIS motes. > I have

[Tinyos-help] Error when compiling RadioSenseToLeds on Mac OS X 10.6

2011-01-04 Thread Xiaodong Wang
Hi all, I had this error when compiling RadioSenseToLeds on Mac OS X 10.6 mkdir -p build/telosb mig python -target=telosb -DIDENT_APPNAME=\"RadioSenseToLed\" -DIDENT_USERNAME=\"xwang33\" -DIDENT_HOSTNAME=\"davidmac1.nomad\" -DIDENT_USERHASH=0x21effc98L -DIDENT_TIMESTAMP=0x4d23b524L -DIDENT_UIDHA

[Tinyos-help] Data Transmission(in Micaz)

2011-01-04 Thread SHIVASANKAR GANESAN
What is the function of this code atomic{ packet_type = DATA;//Data //lenght as seen by the receiver: sent data + crc msg_ptr->length = msg_ptr->length + MSG_HEADER_SIZE + MSG_FOOTER_SIZE; // put default FCF values

[Tinyos-help] Data tx

2011-01-04 Thread SHIVASANKAR GANESAN
Hi I am trying to implement below given transmission part in Micaz. If (CCA==1)//channel free { Send preamble; //send preamble If (Ack==1) // Ack received { Send data; //send data } } How to implement datapayload transmission part.  With regards Sivasankar _

Re: [Tinyos-help] Reg:transmission power control for preamble

2011-01-04 Thread SHIVASANKAR GANESAN
Hi I didn't have CC2420Packet.nc file in my system.  With regards Sivasankar --- On Mon, 15/11/10, manish chaturvedi wrote: From: manish chaturvedi Subject: Re: [Tinyos-help] Reg:transmission power control for preamble To: "SHIVASANKAR GANESAN" Cc: "Berekely univ" Date:

Re: [Tinyos-help] Downstream Message

2011-01-04 Thread ¯`•._.•Lance•._.•´¯
Hi Michael , First really appreciate your help. Would it be possible for me to take a look of the coding for your program. Cause i am quite new to TinyOs . Thanks in advance, lance On Wed, Jan 5, 2011 at 1:05 AM, Michael Schippling wrote: > I managed to send messages from th

[Tinyos-help] localization of tiny os motes

2011-01-04 Thread Shamali Gunawardena
Is it possible to set the x,y,z coordinates in Tossim. Thankyou, regards, ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help