Re: [Tinyos-help] Arch Linux

2011-11-03 Thread Enrico Treu
As long as you have a working developer environment (compiler, parser and libs) you should be able to build from the repository. This way should work for any distribution. Magnus Morton magnusmor...@gmail.com schrieb: Hi, Does anyone have any experience building and using the TinyOS

Re: [Tinyos-help] Problem: TimeSyncPacket and TimeSyncAMSend interfaces

2011-10-27 Thread Enrico Treu
How did you measured? Which version do you use and which monitors where activated? Could you append the command line you used? Best regards. Amin Amin aminbo...@gmail.com schrieb: Hi, I used Avrora simulator, but the message not sent. Can anyone help me please.

Re: [Tinyos-help] Receive, Send and Timer - 2

2011-08-11 Thread Enrico Treu
This approach will stop increment your counter by receiving messages. If you can skip received messages you will get along this way. -- Diese Nachricht wurde von meinem Android-Mobiltelefon mit K-9 Mail gesendet. Chan bey chanbey2...@gmail.com schrieb: Hello, I am trying to simulate message

[Tinyos-help] rts-cts scheme for cc1000

2010-10-25 Thread Enrico Treu
I'm looking for the code where the rts and cts messages (or bytes) are send by the the radio. Can anybody tell me? ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] MICA2 transmission power adjustment in tinyos 2.x

2010-10-22 Thread Enrico Treu
In order to get this behaviour i simply added a few lines of code to my application: module /**/ { uses { //... interface CC1000Control as RadioStrengthControl; //... } } and event void Boot.booted() { //... #ifdef RFPOWER call RadioStrengthControl.setRFPower(RFPOWER); #endif //.. }

Re: [Tinyos-help] MICA2 transmission power adjustment in tinyos 2.x

2010-10-21 Thread Enrico Treu
In order to get this behaviour i simply added a few lines of code to my application: module /**/ { uses { //... interface CC1000Control as RadioStrengthControl; //... } } and event void Boot.booted() { //... #ifdef RFPOWER call RadioStrengthControl.setRFPower(RFPOWER); #endif //.. }