Re: [Tinyos-help] I need your help!

2009-02-04 Thread Guo Huiliang
I get a packet 7E 40 00 CC 0D 7E not the packet 7E 00 00 80 08 32 C0 CC 0D 7E ,how can I disable the packet? Many thanks, Huiliang 2009/2/4 Guo Huiliang huiliang@gmail.com Hi,All: When I send a packet 7E 41 14 FF FF 08 7D 5D 0B 10 03 00 00 00 02 00 cb 31 7E to micaz mote, I get a

Re: [Tinyos-help] shouldReceive function in CpmModel with negative SNR values: digging wormholes in your simulation

2009-02-04 Thread Alban Hessler
Okej, But the PERR function that is right now implemented return a prob of zero when SNR is zero, and then very slowly increase when SNR is going towards negativity. And intuitively, there should not be this minimum point at 0db . Just had a quick look at the your quoted paper, couldn't find

Re: [Tinyos-help] Packet error probability in CpmModelC according to packet size

2009-02-04 Thread Alban Hessler
Thank you for that piece of information information. Is there any chance for me to modify the parameters so that it fits other payload size? From the paper on noise modelization for Tossim 2, it is not so clear to me where you got that curve from (it seems it's through your own experiments?) Best

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

2009-02-04 Thread Javier M. Mora Merchan
El mié, 28-01-2009 a las 13:24 -0300, francisco cassimiro escribió: Hello everybody. I have two questions, to build an application that must run in the sink node with a higher level language, like java, and the remaining nodes with NESC: 1 - Is there a way to make a java code (or C + +)

[Tinyos-help] Problems with deluge and b6lowpan

2009-02-04 Thread Jordi Soucheiron
Hello, I've been trying to make deluge work in some tmote sky in a b6lowpan network, but so far I've been unsuccessful. I've been able to upload some program images into the tmotes and using nc6 and nwprog I've checked that are correctly uploaded. When i call nwprog list i get this: nwprog list

Re: [Tinyos-help] I may need some help about the RF230Sniffer

2009-02-04 Thread Miklos Maroti
Dear Saul, Sorry, it implements the RadioConfig interface, not the RadioControl. Look at the CVS here: http://tinyos.cvs.sourceforge.net/viewvc/tinyos/tinyos-2.x/tos/chips/rf230/ Best, Miklos On Wed, Feb 4, 2009 at 2:54 PM, Saul Garcia sgar2...@gmail.com wrote: Hi again, I've upgraded the

[Tinyos-help] Help with iris motes!!

2009-02-04 Thread Mohammad Sajjad Hossain
Hi,I am trying to install the Blink app in an iris mote using an mib520 board. I am issuing the following command: make iris install mib510,/dev/tty.usbserial-XBQQV3HRA Everything goes well expect at the end, I get this: --- avrdude: AVR device initialized and ready to accept

[Tinyos-help] help needed on uint64_t type

2009-02-04 Thread BAI LI
Hi All, I have defined a uint64_t type variable as follows: uint64_t a; a=0x; printf(a= %lld /n,a); printf(a= %llx /n,a); the result displayed as follows: a= -1 a= The compilation didn't show any error. What is the problem? Does printf support to display the uint64_t

[Tinyos-help] @safe flag

2009-02-04 Thread BAI LI
Hi All, I found the code as follows in CounterToLocalTimeC file, generic module CounterToLocalTimeC(typedef precision_tag) @safe() { provides interface LocalTimeprecision_tag; uses interface Counterprecision_tag,uint32_t; } implementation { async command uint32_t LocalTime.get() {

Re: [Tinyos-help] @safe flag

2009-02-04 Thread Urs Hunkeler
Hi Bai, I just found this: http://docs.tinyos.net/index.php/Safe_TinyOS Looks interesting. I guess I will read it, too. Cheers, Urs BAI LI wrote: Hi All, I found the code as follows in CounterToLocalTimeC file, generic module CounterToLocalTimeC(typedef precision_tag) @safe() {

Re: [Tinyos-help] help needed on uint64_t type

2009-02-04 Thread kiseop Lee
Hi, This is tested in Visual C++ in the Windows. but I don't know it in tinyos compiler. Only refer to your work... char sql[100]; __int64 var1=0x12345678ABCDABCD; sprintf(sql,%I64x,var1); //not L. Upper case of i[ai]... sprintf(sql,%I64d,var1); Best regards, K.S.Lee 2009/2/5 BAI LI