Please stop sending me anything about tinyos, because i've compleated my study.
TQ very much for your help n coorporation.
________________________________
From: "[email protected]"
<[email protected]>
To: [email protected]
Sent: Sunday, 11 September 2011 3:00 AM
Subject: Tinyos-help Digest, Vol 101, Issue 21
Send Tinyos-help mailing list submissions to
[email protected]
To subscribe or unsubscribe via the World Wide Web, visit
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help
or, via email, send a message with subject or body 'help' to
[email protected]
You can reach the person managing the list at
[email protected]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Tinyos-help digest..."
Today's Topics:
1. Re: Porting c code with nc one (Sergio Valcarcel)
2. Deluge T2 on ubuntu Lucid Lynx (Rafael de Oliveira Costa)
3. Re: Porting c code with nc one (Maissa Ben Jamaa)
4. change the routing table of aodv at tinyos1.x (Naila Frt)
----------------------------------------------------------------------
Message: 1
Date: Sat, 10 Sep 2011 15:21:10 +0200
From: Sergio Valcarcel <[email protected]>
Subject: Re: [Tinyos-help] Porting c code with nc one
To: Maissa Ben Jamaa <[email protected]>, Berekely univ
<[email protected]>
Message-ID:
<CAMYe=yvm2fk3um3yd_f8bqwowedf7drwjvtbpjk24eray4q...@mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"
Hi Malissa,
Depending on the platform you are using, your CPU may accept float or even
double numbers. Also, depending on the architecture float computations might
be accelerated with dedicated hardware or not.
So the main points you have to verify is whether the extensively use of
float operations will decrease the overall performance of your system. Of
course, it is not the same to compute a numerical integration than to
average two numbers...
Another main point is the memory footprint. Float numbers typically could
use 4 bytes. So you must take care of how much available RAM you have for
your application.
A final concern is that you can not use network data types (i.e. nx_struct)
for communications since there is not defined a nx_float type.
The other option, instead of using floats, could be to convert to integer,
scaling as many decimals you want. For instance, 165.32 could be converted
to 16532 (remembering that it is multiplied by 1e2).
I hope it helps!
Sergio
On Sat, Sep 10, 2011 at 10:30 AM, Maissa Ben Jamaa <[email protected]
> wrote:
> Hello sir,
>
> Please can I ask you a question: does using float number in a nc code for
> real compilation matter?
>
> Thank you
>
> Best regards,
> Maissa Ben Jamaa
>
>
> 2011/9/9 Maissa Ben Jamaa <[email protected]>
>
>> Hello sir,
>>
>> I am very thankful for your answer, I tried to do something similar to
>> blip code but I got the following error:
>> gcc: cannot specify -o with -c or -S and multiple languages.
>> Noting that I am now testing my code with Tossim.
>>
>> Best regards,
>> Maissa Ben Jamaa
>>
>>
>> 2011/9/8 Sergio Valcarcel <[email protected]>
>>
>>> Dear Maissa,
>>>
>>> Please, check this thread:
>>>
>>> http://www.mail-archive.com/[email protected]/msg36375.html
>>>
>>> It is pretty straight forward, but do not hesitate to mail me if you need
>>> further help.
>>>
>>> Cheers!
>>> Sergio
>>>
>>>
>>> On Thu, Sep 8, 2011 at 5:12 PM, Maissa Ben Jamaa <
>>> [email protected]> wrote:
>>>
>>>> Hello sir,
>>>>
>>>> I saw your interaction in tinyos help about porting c code with nc code.
>>>> here is the link:
>>>> http://www.mail-archive.com/[email protected]/msg38966.html
>>>>
>>>> Please can you tell me the steps to follow in order to make this
>>>> porting.
>>>>
>>>> Thanks.
>>>>
>>>> Best ragards,
>>>> Maissa Ben Jamaa
>>>>
>>>
>>>
>>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
https://www.millennium.berkeley.edu/pipermail/tinyos-help/attachments/20110910/fcefa865/attachment-0001.htm
------------------------------
Message: 2
Date: Sat, 10 Sep 2011 12:35:10 -0300
From: Rafael de Oliveira Costa <[email protected]>
Subject: [Tinyos-help] Deluge T2 on ubuntu Lucid Lynx
To: tinyos-help <[email protected]>
Message-ID:
<cajk+k1sjvhu2gf3sle4q3pcsn0y2e+6iy85zwg8c7lx0gcv...@mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"
Hi,
I've installed the tinyos-2.1.1 from http://tinyos.stanford.edu/ to ubuntu
Lucid Lynx and i want to use Deluge for reprogramming micaz motes. I'm
following Deluge T2 Tutorial (
http://docs.tinyos.net/tinywiki/index.php/Deluge_T2) but occurs errors when
i execute some scripts. Someone has successfully follow this tutorial ?
Rafael de Oliveira Costa
M.Sc. Student
PPGI / DCC - iNCE/ UFRJ
Rio de Janeiro, RJ, Brazil
"The first step to getting the things you want out of life is this : decide
what you want"
Ben Stein
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
https://www.millennium.berkeley.edu/pipermail/tinyos-help/attachments/20110910/fd6d2a10/attachment-0001.htm
------------------------------
Message: 3
Date: Sat, 10 Sep 2011 16:38:33 +0100
From: Maissa Ben Jamaa <[email protected]>
Subject: Re: [Tinyos-help] Porting c code with nc one
To: Sergio Valcarcel <[email protected]>
Cc: Berekely univ <[email protected]>
Message-ID:
<CALzGP01oEOt4cOOM=LatkiNQQfzS==w8mxtnmgnhe3ls5lw...@mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"
Hello,
Thank you.
I am using telosb mote, I think that it works well.
Best,
Maissa
2011/9/10 Sergio Valcarcel <[email protected]>
> Hi Malissa,
>
> Depending on the platform you are using, your CPU may accept float or even
> double numbers. Also, depending on the architecture float computations might
> be accelerated with dedicated hardware or not.
> So the main points you have to verify is whether the extensively use of
> float operations will decrease the overall performance of your system. Of
> course, it is not the same to compute a numerical integration than to
> average two numbers...
>
> Another main point is the memory footprint. Float numbers typically could
> use 4 bytes. So you must take care of how much available RAM you have for
> your application.
>
> A final concern is that you can not use network data types (i.e. nx_struct)
> for communications since there is not defined a nx_float type.
>
> The other option, instead of using floats, could be to convert to integer,
> scaling as many decimals you want. For instance, 165.32 could be converted
> to 16532 (remembering that it is multiplied by 1e2).
>
> I hope it helps!
> Sergio
>
>
> On Sat, Sep 10, 2011 at 10:30 AM, Maissa Ben Jamaa <
> [email protected]> wrote:
>
>> Hello sir,
>>
>> Please can I ask you a question: does using float number in a nc code for
>> real compilation matter?
>>
>> Thank you
>>
>> Best regards,
>> Maissa Ben Jamaa
>>
>>
>> 2011/9/9 Maissa Ben Jamaa <[email protected]>
>>
>>> Hello sir,
>>>
>>> I am very thankful for your answer, I tried to do something similar to
>>> blip code but I got the following error:
>>> gcc: cannot specify -o with -c or -S and multiple languages.
>>> Noting that I am now testing my code with Tossim.
>>>
>>> Best regards,
>>> Maissa Ben Jamaa
>>>
>>>
>>> 2011/9/8 Sergio Valcarcel <[email protected]>
>>>
>>>> Dear Maissa,
>>>>
>>>> Please, check this thread:
>>>>
>>>> http://www.mail-archive.com/[email protected]/msg36375.html
>>>>
>>>> It is pretty straight forward, but do not hesitate to mail me if you
>>>> need further help.
>>>>
>>>> Cheers!
>>>> Sergio
>>>>
>>>>
>>>> On Thu, Sep 8, 2011 at 5:12 PM, Maissa Ben Jamaa <
>>>> [email protected]> wrote:
>>>>
>>>>> Hello sir,
>>>>>
>>>>> I saw your interaction in tinyos help about porting c code with nc
>>>>> code.
>>>>> here is the link:
>>>>> http://www.mail-archive.com/[email protected]/msg38966.html
>>>>>
>>>>> Please can you tell me the steps to follow in order to make this
>>>>> porting.
>>>>>
>>>>> Thanks.
>>>>>
>>>>> Best ragards,
>>>>> Maissa Ben Jamaa
>>>>>
>>>>
>>>>
>>>
>>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
https://www.millennium.berkeley.edu/pipermail/tinyos-help/attachments/20110910/d6721c0c/attachment-0001.htm
------------------------------
Message: 4
Date: Sat, 10 Sep 2011 16:55:51 +0100 (BST)
From: Naila Frt <[email protected]>
Subject: [Tinyos-help] change the routing table of aodv at tinyos1.x
To: "[email protected]"
<[email protected]>
Message-ID:
<[email protected]>
Content-Type: text/plain; charset="utf-8"
Good evening everyone,
I work at tinyos 1.X and I use tossim simulator.
my project is about how we can modified the routing table to aodv protocol.
we want know how i can change the operation at this protocol and how i can
illiminate some fields at its routing table.
thanks for you
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
https://www.millennium.berkeley.edu/pipermail/tinyos-help/attachments/20110910/185373c7/attachment-0001.htm
------------------------------
_______________________________________________
Tinyos-help mailing list
[email protected]
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help
End of Tinyos-help Digest, Vol 101, Issue 21
********************************************
_______________________________________________
Tinyos-help mailing list
[email protected]
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help