[Tinyos-help] HOW TO CAPTURE MSP430 CLOCK

2008-07-28 Thread superpopb2b
Hello! I want to use tmote to produce clock of 40KHz,so I'm trying to capture msp430's clock for a several days, but failed. I think using interfaces of TimerA0 could work, so I try to use interfaces MSP430Capture as CaptureA0,MSP430TimerControl as ControlA0,and MSP430Timer as TimerA. By using

Re: [Tinyos-help] Surprising Timer Readings

2008-07-28 Thread Anton
I use a free program COMPump to read the port. As far as I understand it just listens the port and what I see is a raw stream of data. This program allows to make log files, and that's exactly what I need. I have written a special C-program that processes those log files and takes into account a

Re: [Tinyos-help] need help with serial communication of peripheral devices..

2008-07-28 Thread Michael Schippling
You probably need to use the lower level UART modules, e.g., UARTM.nc in T1, but I don't know what they are called in T2. Search this list for many questions, mostly unanswered, about using raw UART comm... MS Varun Jain wrote: > Hi, > > I am trying to implement a network of 20 synchronous clock

Re: [Tinyos-help] what affects RSSI

2008-07-28 Thread Sarfraz Nawaz
This paper http://www.isi.edu/~johnh/PAPERS/Son06a.html would answer your questions. On Tue, Jul 29, 2008 at 3:08 AM, Min Guo <[EMAIL PROTECTED]> wrote: > Is there a good technique report for RSSI? I found the ieee802.16, but > I still do not know whether RSSI can decrease when several messages >

[Tinyos-help] need help with serial communication of peripheral devices..

2008-07-28 Thread Varun Jain
Hi, I am trying to implement a network of 20 synchronous clocks/counters connected to each other and controlled using TinyOS from a Central BaseStation. I have been able to implement most of the test applications and the multihop protocols successfully. I am even able to modify certain java files

Re: [Tinyos-help] Regarding CVS checkout

2008-07-28 Thread nisha jain
How are you using it? Have u generated ssh key for it? Also what parameters did u give in following fields? CVSROOT protocol protocol parameters server port repository folder username Module It gives me following ErrorI want to check out the tinyos-2.x-contrib berkely folder... In C

Re: [Tinyos-help] How to know usage of memory and external flash while running application

2008-07-28 Thread Paul Stickney
If this is really intended (it seems like an odd requirement), I would extract the information generated during the compilation phase and set values in the corresponding images (see tos-set-symbols) before programming for later retrieval. Of course, this assumes a static heap. HTH, Paul On Wed, J

Re: [Tinyos-help] Feeling confused: Where/how to get 2.1 RC x.

2008-07-28 Thread Razvan Musaloiu-E.
Hi! On Sun, 27 Jul 2008, Paul Stickney wrote: > Hello, > > Anyone with a useful pointer on how to get a specific RC candidate? > Are there specific CVS tags or snapshot archives? You can checkout the RC3 for TinyOS 2.1 from CVS using this command: cvs -z3 -d:pserver:[EMAIL PROTECTED]:/cv

Re: [Tinyos-help] Limited number of timers?

2008-07-28 Thread Eric Decker
Hi Nicola and Paul, VirutalizeTimerC layers 255 independent timers on top of the lower layer hardware timer resources The platform wiring takes care of the wiring. From application code using something like the following works well: I have code that uses a timer... uses interface Timer as GPST

Re: [Tinyos-help] Doing Re-transmissions

2008-07-28 Thread Michael Schippling
Just some things to try... I'd bet that the message buffer gets reused or erased before your second send can complete. You may also have trouble calling the send directly from the done, since done is in an "event" context which is sometimes tantamount to an interrupt, perhaps try copying the messa

Re: [Tinyos-help] Surprising Timer Readings

2008-07-28 Thread Eric Decker
That is byte stuffing and is part of the serial protocol stack (HDLC? if memory serves me right). What I don't understand is why you even saw them. Are you looking at the raw stream? I would have thought they would have been transparent to you because you'd be looking at the ends of the communic

Re: [Tinyos-help] dead tmote?

2008-07-28 Thread Michael Schippling
I was afraid of that... The tantalizing thing is that the CPU leds do operate which means the controller is doing something. But I suppose it's more trouble than it's worth. thanks MS Eric Keller wrote: > I would move on. We tried to fix one that apparently had > a short somewhere on board. It's

[Tinyos-help] Doing Re-transmissions

2008-07-28 Thread ram kishore
Hi all, I am using TOS1.1.10 .In the standard receiver application TOSBase. I am trying to retransmit the message.I sent a message by calling call RadioSend.send(gpTxMsg);. For this RadioSend.sendDone(TOS_MsgPtr Msg, result_t success) event is generated. Hoping t

Re: [Tinyos-help] what affects RSSI

2008-07-28 Thread Min Guo
Is there a good technique report for RSSI? I found the ieee802.16, but I still do not know whether RSSI can decrease when several messages meet on the air On Mon, Jul 28, 2008 at 6:11 PM, Paul Stickney <[EMAIL PROTECTED]> wrote: > I would be more interested in the effects of radition propagation >

Re: [Tinyos-help] Regarding CVS checkout

2008-07-28 Thread Paul Stickney
Try: http://sourceforge.net/cvs/?group_id=28656 The command-lines for a CVS checkout are simple: (the CVS client that comes with cygwin works great). $ mkdir -P /where/you/want/the/checkout $ cd /where/you/want/the/checkout $ cvs -d:pserver:[EMAIL PROTECTED]:/cvsroot/tinyos login (press enter whe

[Tinyos-help] How can I wire two components with different am Id to ActiveMessageC

2008-07-28 Thread weiping SONG
Hi all, I want to wire two components to ActiveMessageC. Each has AMSend and Receive interface, but their AM id are different. I found that only one component received messages. Could someone help me? Regards, Weiping ___ Tinyos-help mailing list Ti

Re: [Tinyos-help] what affects RSSI

2008-07-28 Thread Paul Stickney
I would be more interested in the effects of radition propagation patterns (not signal inference) and environmental factors. HTH, Paul On Mon, Jul 28, 2008 at 8:38 AM, Min Guo <[EMAIL PROTECTED]> wrote: > Surely the longer the distance, the weaker the RSSI. Besides, if > several senders are sendi

Re: [Tinyos-help] Limited number of timers?

2008-07-28 Thread Paul Stickney
For TinyOS 2.x see VirtualizeTimerC. I believe `new TimerMilliC()`, has the same affect, but allows a different way to wire. There is a different between hardware-level HPL/HAL timers and the exposed software timers in the HIL. HTH, Paul On Mon, Jul 28, 2008 at 1:38 AM, Nicola Wegner <[EMAIL PROT

[Tinyos-help] what affects RSSI

2008-07-28 Thread Min Guo
Surely the longer the distance, the weaker the RSSI. Besides, if several senders are sending, due to the overlapping and the phase differences of signals, isn't it possible that the receiver may sometimes detect a stronger and sometimes a weaker RSSI than only one sender is sending? I made an expe

Re: [Tinyos-help] Multihop in TinyOS 2.x

2008-07-28 Thread Omprakash Gnawali
On Mon, Jul 28, 2008 at 1:33 AM, afuba edwin <[EMAIL PROTECTED]> wrote: > Hi all, > I was wondering if there is a multihop communication component in TinyOS 2.x > like the GenericCommPromiscuous in TinyOS 1.x. Can anyone please help ? Please take a look at CTP, which replaces Multihop communicatio

Re: [Tinyos-help] Surprising Timer Readings

2008-07-28 Thread Anton
The timer is all right. I realized what was the problem. Serial port communication played a trick on me. The program which I used to read the port gave out data bytes 0x7E and 0x7D as 0x7D 0x5E and 0x7D 0x5D. This is because byte 0x7E is reserved as a frame delimiter, and 0x7D is reserved as a

[Tinyos-help] Limited number of timers?

2008-07-28 Thread Nicola Wegner
Hi everybody, just a short question to the micaz platform. Is the number of timers I can use limited? I read in TEP102 that there are only three compare registers for each of the 16-bit timers. Does this mean that I can use only 6 timers at a time? Or does TinyOS provide some kind of virtualizatio

[Tinyos-help] Uart and CC2420 module conflict on telos Platform?

2008-07-28 Thread Han Yidong
Hi guys, I am now using telos platform, which is BSN development kit from Imperial College London. This platform has SPI/Uart0 interface and Uart1. Our group are now using this BSN Development Kit to develop our own prototype, which use another platform Platform1 to connect to BSN through

[Tinyos-help] Multihop in TinyOS 2.x

2008-07-28 Thread afuba edwin
Hi all, I was wondering if there is a multihop communication component in TinyOS 2.x like the GenericCommPromiscuous in TinyOS 1.x. Can anyone please help ? thanks Edwin ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu https://w