[Tinyos-help] [Tinyos-Help] Timers

2012-07-23 Thread SANTOSH KUMAR KAMALAMPET
Hello all, I am using telosb mote and in my application there are different wakeup times for the motes(aperiodic), but once they wake up the amount of time after which they should go to sleep is constant. So i used a one shot timer for this.But after is stop the oneshot timer, it is

[Tinyos-help] Rewriting the flash memory using FlashBridge interface.

2007-03-28 Thread SANTOSH KUMAR
Hi David, I have a question regarding the flashbridge interface. I am trying to write to the flash using the flashbridge interface in telosb mote. In this I am facing a problem with overwriting to a memory location. For example using the flashbridgeviewer ( the java application). When I say write

[Tinyos-help] EEPROM on Tossim

2007-03-26 Thread SANTOSH KUMAR
Hello all, I have written a program to write and read to EEPROM and I want to test this on tossim. These are the sequence of calls I do the initialization in StdControl.init(). command result_t StdControl.start() { call EEPROMControl.start(); call EEPROMWrite.startWrite();

[Tinyos-help] RE: Question regardin EEPROM.

2007-03-26 Thread SANTOSH KUMAR
) { return SUCCESS; } event result_t EEPROMRead.readDone(uint8_t *buf, result_t success) { return SUCCESS; } -Original Message- From: SANTOSH KUMAR [mailto:[EMAIL PROTECTED] Sent: Monday, March 26, 2007 2

[Tinyos-help] Question regarding EEPROM on TOSSIM.

2007-03-25 Thread SANTOSH KUMAR
Hi all, I am facing a problem to simulate the use of the EEPROM (external or internal) on TOSSIM. I am currently using the EEPROMRead and the EEPROMWrite interface. The TOSSIM documentation says that I can simulate the EEPROM as a huge file or by using the -ef option and specifying the filename.

Re: [Tinyos-help] how do I model lossless environment in Tossim

2007-03-21 Thread SANTOSH KUMAR
Hi, I am facing a similar problem on TOSSIM on tinyos 1.x. I have used the LossyBuilder to generate a grid topology. Say there are four nodes 0 to 3. A message sent by node 0 is not received by 1, 2, and 3 at the same time. There are instances that a message that is broadcasted by 0 is not

[Tinyos-help] ncc source code

2007-02-17 Thread SANTOSH KUMAR
Hi, I want to know where to get the ncc source code. I already have the nescc source code. Thanks and Regards, Santosh ___ Tinyos-help mailing list Tinyos-help@Millennium.Berkeley.EDU

[Tinyos-help] Regarding FlashBridge

2007-02-12 Thread SANTOSH KUMAR
Hello David, I have written a program to read and write from the flash using FlashBridge interface. In the first program say FlashWrite I write to the address 0x00 some data say hello\n. In another program say FlashRead I read from that location 0x00. Here if I compare the value that was written

[Tinyos-help] Re: BlockStorage on telosb.

2007-02-08 Thread SANTOSH KUMAR
FF FF | FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF | On Wed, 7 Feb 2007 22:59:20 -0600 (CST) SANTOSH KUMAR [EMAIL PROTECTED] wrote: Hi David, I use blockstorage interface and I use BlockWrite and BlockRead

[Tinyos-help] BlockStorage on telosb.

2007-02-07 Thread SANTOSH KUMAR
Hi David, I use blockstorage interface and I use BlockWrite and BlockRead to write and read respectively on telosb. I am able to read the data but the data is not the same as the one written. I am not sure whether the write is happening correctly. I suspect this because I called some Leds in the

Re: [Tinyos-help] What do PageEEPROM's flush and sync do?

2007-02-06 Thread SANTOSH KUMAR
Hi David, I am facing the same problem as you have mentioned below. I did a sync(PageNumber), the syncDone event still fails. I do a write and then on the writeDone event I call a sync. The syncDone still fails. Could you please let me know what the problem could be? I am using telosb mote as