[Tinyos-help] net.tinyos.message.Message not Serializable?

2007-10-23 Thread Andy Dalton
t the provided base class, 'net.tinyos.message.Message', does not implement java.io.Serializable. Is there any reason why 'Message' should not implement Serializable? I could easily make the change locally, but it would be nice if I could eventually share my tool without having to include a modif

Re: [Tinyos-help] Does anyone know good Testbed manage tools

2006-11-27 Thread Andy Dalton
at. As I mentioned earlier, the source for NESTbed will soon be publicly available; however, if you are in immediate need, we will be glad to talk with you on an individual basis. Cheers, Andy Dalton -- Andrew R. Dalton Ph.D. Candidate Department of Computer Science Clemson University Clem

Re: [Tinyos-help] Problems using enums

2007-02-12 Thread Andy Dalton
You might expect to see something like that if one or more of the enum constants were preprocessor macros. Consider something like: #define INIT 0x0001 ... enum {INIT, BUSY}; ... That would get turned into: enum (0x0001, BUSY); ... which would cause the compiler to be unhappy :

Re: [Tinyos-help] Sending to TOS_LOCAL_ADDR

2007-03-25 Thread Andy Dalton
On 3/25/07, Greg Jaman <[EMAIL PROTECTED]> wrote: If you want to loop local message back to receive interface you'll have to modify the CC2420RadioM module. This should be a simple fix. In the Send.send command you'll check to see if the address matches LOCAL_ADDR, Copy the pMsg data to the RxB

[Tinyos-help] Nucleus and TinyOS-2.x

2007-05-08 Thread Andy Dalton
Greetings all, Are there currently any plans for porting the functionality provided by Nucleus to TinyOS-2.x? Thanks, Andy ___ Tinyos-help mailing list Tinyos-help@Millennium.Berkeley.EDU https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/t

[Tinyos-help] TinyOS-2.x - Controlling the Default Radio Power in Software

2007-07-09 Thread Andy Dalton
Greetings, I'm looking to control the default radio power level at runtime for Telos motes using TinyOS-2.x. In tos/chips/cc2420/CC2420Power.nc I see the following comment: "[This] does not include transmission power, see the CC2420Config interface." However, the CC2420Config interface does no

[Tinyos-help] TOSComm vs RXTX in Linux?

2006-09-05 Thread Andy Dalton
Greetings, I'm wondering what is the status of TOSComm? I'm currently using rxtx-2.1-7pre17 in Linux and I frequently get the following error when trying to send a message to a Tmote Sky over USB via MoteIF: # # An unexpected error has been detected by HotSpot Virtual Machine: # # SIGSEGV (0xb

Re: [Tinyos-help] Swapping TOS message buffer Problem

2006-09-06 Thread Andy Dalton
Do you every initialize msg_buffer to point to an actual message? You need something like: TOS_Msg buffer; TOS_MsgPtr msg_buffer; command result_t StdControl.init() { msg_buffer = &buffer; } On 9/6/06, Hari Hara Sudhan <[EMAIL PROTECTED]> wrote: Hi every one, I have a problem with s

Re: [Tinyos-help] How to enable ACK on tmote

2006-09-21 Thread Andy Dalton
What does "at the beginning" mean? As far as I know, you have to call it *after* StdControl.init() completes (I've typically seen it called in StdControl.start()). On 9/21/06, Pablo Gil MontaƱo <[EMAIL PROTECTED]> wrote: Hi I'm trying to enable ack's on tmote. I have wired the components: Mai