Re: [Tinyos-help] TOSSIM compile error

2012-04-01 Thread Javier M Mora
. The interface changed and ncc doesn't like at all. There is a patch for ncc to solve this but easiest solution is downgrade gcc to 4.5. In debian, my distro, I have installed 4.5 and 4.6 at same time and I changed gcc symlink to gcc-4.5. Now works. -- Javier M Mora jmm...@us.es

Re: [Tinyos-help] TOSSIM Error

2009-06-24 Thread Javier M Mora Merchan
for Ubuntu get you sources.list line updated and play! :-) Javier M Mora ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] evaluating parameter under T2

2009-06-17 Thread Javier M Mora Merchan
consumption. Yours Javier M Mora ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] What is the difference SplitControl and StdControl?

2009-06-11 Thread Javier M Mora Merchan
or stopdone). Every component designer says what interface is more appropiate for his component. And you have to use it. yours. javier m mora ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu https://www.millennium.berkeley.edu/cgi-bin

Re: [Tinyos-help] Efficient nesc programming

2009-05-30 Thread Javier M Mora Merchan
Raffaele Gravina escribió: Hi all, I'd like to bring to your attention the following two equivalent snippet of code: *** A event void Read.readDone(error_t result, val_t val) { curr = val; if

Re: [Tinyos-help] interface or component not found

2009-05-11 Thread Javier M Mora Merchan
reinstall. javier m mora ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] having problem running make micaz sim

2009-04-20 Thread Javier M Mora Merchan
correctly. Maybe you installed the very minimal cygwin instalation and it isn't enough. javier m mora ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] Error with TOSSIM

2009-04-17 Thread Javier M Mora Merchan
error. That error means the compiler can't find Python.h file. So, you have to look for that file and pass a -I option with the location of the file. javier m mora ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu https

Re: [Tinyos-help] Unable to program motes -- Timeout

2009-04-01 Thread Javier M. Mora Merchan
El mar, 17-03-2009 a las 18:26 -0400, Eric Keller escribió: I have had this problem. I fixed it to some extent by changing the settings of the build script. There is a flag that adds delay in the programming step. Digging up the code is too hard right now, sorry. I found that I only

Re: [Tinyos-help] running TinyViz in TinyOS-2.1.0

2009-02-25 Thread Javier M. Mora Merchan
, but I cannot load any file to stimulate the environment. Do I need to upgrade the TinyOS so that I can get that file? TinyViz only works with TinyOs 1.x not in tinyOs 2.0 or tinyOs 2.1 :-( Javier M Mora ___ Tinyos-help mailing list Tinyos-help

Re: [Tinyos-help] Problems with tossim

2009-02-16 Thread Javier M. Mora Merchan
in Makefile. In my case, I added to Makefile: CFLAGS+=-I/usr/lib/gcc/x86_64-linux-gnu/4.2/include/ CFLAGS+=-I/usr/include/ and all went ok. Javier M Mora ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu https://www.millennium.berkeley.edu

[Tinyos-help] setting LocalTime

2009-02-11 Thread Javier M. Mora Merchan
Counter Interface but it's read-only too. I know I can use an time_offset var and work with it (comparing with localtime) but Is there anything more direct?. Javier M Mora ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu https

Re: [Tinyos-help] number of nodes in TOSSIM

2009-02-06 Thread Javier M. Mora Merchan
. javier m mora ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] Java code called NESC code.

2009-02-04 Thread Javier M. Mora Merchan
on that now, but it's not a finished work. So, this way ask you lots of gdb work. Javier M Mora ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] Inspecting vars with C++ in TOSSIM

2009-01-26 Thread Javier M. Mora Merchan
Hi, I started to study TOSSIM library. I read tutorial in tinyos web and it says: In a C++ TOSSIM, there is no variable inspection. While it is possible to request memory regions and cast them to the expected structures, currently there is no good and simple way to do so.