[Tinyos-help] Execution

2011-10-01 Thread lucky eyes
Hi all, I am using TinyOS 2.1.1. I am compiling blink application using make iris. How I can see output on pc using iris? I am using command make mica2 sim but it does not work. Thanks AQANSARI ___

[Tinyos-help] Sensor board

2011-05-21 Thread lucky eyes
Hi all, I want to know is there a sensor board which consists of both CO2 and motion sensors. Thanks A.Q.Ansari___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu

[Tinyos-help] webserver

2011-01-11 Thread lucky eyes
Hi all, Is it necessary for web server applications in tinyos-1.x to use internet? I am working offline and I have successfully download application on motes but I am not getting output on html file. AQAnsari

[Tinyos-help] webserver

2011-01-10 Thread lucky eyes
Hi all, Is it necessary for web server applications in tinyos-1.x to use internet? I am working offline and I have successfully download application on motes but I am not getting output on html file. AQAnsari

[Tinyos-help] tinyos-1.x connectivity

2011-01-05 Thread lucky eyes
Hi everyone, I am using tinyos-1.x and I want to make graphical user interface so that user can give different inputs to retreive information from nodes. Can anybody suggest any software that can be linked with tinyos-1.x. Thanks in advance AQAnsari

[Tinyos-help] qus regarding tinyos

2010-12-20 Thread lucky eyes
Hi all, I want to know if CC1000RadioC is used for radio and I want to send message to a particular node then where I can specify address because in BaresendMsg there is no argument for address as it is in genericcom. In sendMsg of genericcom command result_t send(uint16_t address,

[Tinyos-help] qus regarding tinyos

2010-12-19 Thread lucky eyes
Hi all, I want to know if CC1000RadioC is used for radio and I want to send message to a particular address then where I can specify address because in BaresendMsg there is no argument for address as it is in genericcom. In sendMsg of genericcom command result_t send(uint16_t address,

[Tinyos-help] two qus regarding tinyos

2010-12-17 Thread lucky eyes
Hi Urs, I have 2 questions: 1. I have read from previous emails that tinysec has implemented with MD5 hash function but if I want to get hash output between limited range say A-B then where in tinysec file modification is required? I have seen tinysec files but i cannot find code

[Tinyos-help] two qus regarding tinyos

2010-12-15 Thread lucky eyes
Hi, I have 2 questions: 1. I have read from previous emails that tinysec has implemented with MD5 hash function but if I want to get hash output between limited range say A-B then where in tinysec file modification is required? I have seen tinysec files but i cannot find code where

Re: [Tinyos-help] components

2010-12-11 Thread lucky eyes
-help/2005-July/010464.html lucky eyes wrote: hi, Can anyone tell me what components and interface are used for CC1000 Ack in tinyos1.x. Thanks in advance AQAnsari

[Tinyos-help] components

2010-12-10 Thread lucky eyes
hi, Can anyone tell me what components and interface are used for CC1000 Ack in tinyos1.x. Thanks in advance AQAnsari ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu

[Tinyos-help] Install a program

2010-12-08 Thread lucky eyes
Hi, Is it possible to install program on nodes by using VMware? A.Q.Ansari___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu

Re: [Tinyos-help] Retransmit

2010-12-04 Thread lucky eyes
+0100 From: et...@uni-potsdam.de To: engr_aqans...@hotmail.com Subject: Re: [Tinyos-help] Retransmit The interface offers a command wasAcked, that tells you if the ack was received. If the return is false you can/ have to resubmit your message. Quoting lucky eyes engr_aqans...@hotmail.com

[Tinyos-help] Retransmit

2010-12-03 Thread lucky eyes
Hi, I am using Tinyos 1.x and I have successfully enabled acknowledge using MacControl.enableAck() but can anybody tell me how to retransmit a message if sent message is not acknowledged A.Q.Ansari___

[Tinyos-help] float variable

2010-11-07 Thread lucky eyes
Hi, I have initialzed x with float and doing increment of 0.1.When value of x reaches to 1.0 there is output 0. I dont know how to correct it. Best Wishes AQAnsari ___ Tinyos-help mailing list

[Tinyos-help] (no subject)

2010-11-03 Thread lucky eyes
Hi, how a particular node in network can be block for a certain period of time ? AQAnsari ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu

[Tinyos-help] Node in Network

2010-11-03 Thread lucky eyes
Hi, how a particular node in network can be block for a certain period of time ? AQAnsari ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu

Re: [Tinyos-help] message received

2010-11-02 Thread lucky eyes
D1, you'll have to write D1 = message-value1;. This will change the value of D1 to the value that you received in the broadcast message. Cheers, Urs On 11/01/2010 03:21 PM, lucky eyes wrote: Hi all, event TOS_MsgPtr ReceiveMsg.receive(TOS_MsgPtr m) { CounterMessage *message

[Tinyos-help] FW: message received

2010-11-02 Thread lucky eyes
have to write D1 = message-value1;. This will change the value of D1 to the value that you received in the broadcast message. Cheers, Urs On 11/01/2010 03:21 PM, lucky eyes wrote: Hi all, event TOS_MsgPtr ReceiveMsg.receive(TOS_MsgPtr m) { CounterMessage *message = (CounterMessage

[Tinyos-help] message received

2010-11-01 Thread lucky eyes
Hi all, event TOS_MsgPtr ReceiveMsg.receive(TOS_MsgPtr m) { CounterMessage *message = (CounterMessage*)m-data; message-value1 = D1; message-value2 =D2 ; message-value3 = D3; return m; } D1,D2 and D3 are sent via broadcast in a

Re: [Tinyos-help] message received

2010-11-01 Thread lucky eyes
. Cheers, Urs On 11/01/2010 03:21 PM, lucky eyes wrote: Hi all, event TOS_MsgPtr ReceiveMsg.receive(TOS_MsgPtr m) { CounterMessage *message = (CounterMessage*)m-data; message-value1 = D1; message-value2 =D2 ; message-value3 = D3; return m; } D1,D2 and D3 are sent via

[Tinyos-help] broadcast message

2010-10-30 Thread lucky eyes
Hi all, Is it possible to broadcast message which contains different field from that of AM.H ? eg message contains following fields for broadcast. uint_16 w uint_8x; uint_8y; uint_8z;(w,x,y,z will be defined in program) I tried by declaring variables in header file but I

[Tinyos-help] Node position

2010-10-26 Thread lucky eyes
Hi How can I assign positions to nodes eg. Node1=0, Node2=1, Node3=0.5 and so on? Thanks in advance A.Q.Ansari ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu