Hi Everyone,

(Using Avrora 1.7.98)

Does anyone know the correct way ti use TinyDB with Avrora.

I have seen reference that it has been done but never with enough detail to replicate.

My main problem is getting the TinyDB java client to talk to the TinyDB running in Avrora.

I run Avrora with the Serial monitor.

I ran the TinyDB java client with the defaults and its never links up to Avrora.

I ran TinyDB with
comm-string:[EMAIL PROTECTED]:2390
(see below for required small change to TinyDB)

The client and avrora appear to link up up no query is ever passed in.

Am I missing something.

Thanks in advance

Christian Brenninkmeijer
PhD Student
University of Manchester

PS: The TinyDB fix is:
In net.tinyos.tinydb.Config.java
After line 52 value = st.nextToken().trim();
add:
        if (st.hasMoreTokens())
                value = value + ":" + st.nextToken();
_______________________________________________
Tinyos-help mailing list
Tinyos-help@Millennium.Berkeley.EDU
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Reply via email to