Re: [Tinyos-help] Updating the code in a TinyOS mote dynamically

2012-02-24 Thread Eric Decker
There is a way to download code and then program it into deployed motes. I don't know the details so would suggest you peruse the sources. On Thu, Feb 23, 2012 at 5:28 PM, Yves S. Garret yoursurrogate...@gmail.comwrote: Hi, I tried writing before, but I don't think my message go to the mailing

Re: [Tinyos-help] Select the channel in nesc

2012-02-24 Thread Mubashir Rehmani
Hello, Please see below to change the channel for CC2420 4.1. Modify the RF channel frequency - You can change the RF channel frequency used by the motes. For example, to change the RF channel of the motes with CC2420 radio (e.g. telosb, micaz), put the following line at

Re: [Tinyos-help] Select the channel in nesc

2012-02-24 Thread Eric Decker
what are you quoting from? On Fri, Feb 24, 2012 at 1:19 AM, Mubashir Rehmani mshrehm...@gmail.comwrote: Hello, Please see below to change the channel for CC2420 4.1. Modify the RF channel frequency - You can change the RF channel frequency used by the motes. For example,

Re: [Tinyos-help] Updating the code in a TinyOS mote dynamically

2012-02-24 Thread Michiel Konstapel
Well, there's Deluge: http://docs.tinyos.net/tinywiki/index.php/Deluge_T2: Deluge is a reliable data dissemination protocol for large objects, such as program binaries. Together with a bootloader, Deluge provides a way to reprogram sensor motes in a network. However, I have no idea if it's

Re: [Tinyos-help] Updating the code in a TinyOS mote dynamically

2012-02-24 Thread Yves S. Garret
Thanks. I'll have a look. On Fri, Feb 24, 2012 at 5:11 AM, Michiel Konstapel m.konsta...@sownet.nlwrote: Well, there's Deluge: http://docs.tinyos.net/tinywiki/index.php/Deluge_T2: Deluge is a reliable data dissemination protocol for large objects, such as program binaries. Together

Re: [Tinyos-help] tymo/dymo status and GPL license

2012-02-24 Thread Omprakash Gnawali
Martin, Tymo is no longer included in TinyOS distribution. - om_p On Mon, Feb 20, 2012 at 10:16 AM, Martin Cerveny mar...@c-home.cz wrote: Hello. What is tymo/dymo library status ? Issuses: 1) many TODO and hidden bugs (see wiki) 2) tymo/dymo flood my network 3) uses GPL license that is

[Tinyos-help] urgent need for help about error: undefined reference to

2012-02-24 Thread Mashal al-shboul
Hi All, i am using tinyos 2.1.1 and nesc to write a program for imote2 platform, i need to use .c file for calling some methods in it, so i put this file and its .h file in the same directory and wrote  #include ezcompress.h, which is the file needed BUT i got this error:  

Re: [Tinyos-help] Updating the code in a TinyOS mote dynamically

2012-02-24 Thread Yves S. Garret
Could this be a hardware issue? Say the flash is read-only unless in special circumstances? The only reason why I say that is because I've seen something like this on a different issue in the past :) On Fri, Feb 24, 2012 at 9:49 AM, Venkatachalam Subramanian venkat.su...@gatech.edu wrote:

Re: [Tinyos-help] help on 2.1.2 rc1 with telosb and rfxlink

2012-02-24 Thread Janos Sallai
Ugo, Thanks for the quick response. I currently have msp-gcc-3.2.3 installed -- that's what I used when I wrote the cc2420x driver. With the current snv head from google code, I get an internal compiler error when trying to build RadioCountToLeds. I'll try to track down what has changed from

Re: [Tinyos-help] help on 2.1.2 rc1 with telosb and rfxlink

2012-02-24 Thread Ugo Colesanti
I can confirm the compiler error with 3.2.3 (that's why I changed with 4.5.3 which is recommended for 2.1.2). Please let me know if I can help with the debugging. Thanks for your help, Ugo On 02/24/2012 05:00 PM, Janos Sallai wrote: Ugo, Thanks for the quick response. I currently have

Re: [Tinyos-help] urgent need for help about error: undefined reference to

2012-02-24 Thread Eric Decker
you've caused code to be included that references an external. The linker is complaining about not being able to find ezcompress. you will need to research where to get the ezcompress code and will then need to figure out yourself how to include that. this is basic C programming with separate

Re: [Tinyos-help] Select the channel in nesc

2012-02-24 Thread Eric Decker
thank you .At some point I'll see about making it easier to find on the wiki. On Fri, Feb 24, 2012 at 1:47 AM, Mubashir Rehmani mshrehm...@gmail.comwrote: Here is the source http://enl.usc.edu/enl/trunk/tenet/doc/Recompile_Mote_Binary.HOWTO Regards On 24 February 2012 10:46, Eric

Re: [Tinyos-help] urgent need for help about error: undefined reference to

2012-02-24 Thread Mashal al-shboul
Thanks Eric for the reply, I have already put the files, ezcompress.c and ezcompress.h in the same directory for my program, and i included the .h file in my code by #inlcude ezcompress.h , it is assumed everything is seen by the linker but it still complains !!. i feel it's a problem in the

Re: [Tinyos-help] urgent need for help about error: undefined reference to

2012-02-24 Thread Eric Decker
On Fri, Feb 24, 2012 at 1:06 PM, Mashal al-shboul shboul8...@yahoo.comwrote: Thanks Eric for the reply, I have already put the files, ezcompress.c and ezcompress.h in the same directory for my program, and i included the .h file in my code by #inlcude ezcompress.h , it is assumed everything