Re: [Tinyos-help] Re: Getting Data from Tmote Sky's Sensors

2007-01-17 Thread tony mancill
I also spent a while trying to get the toscomm stuff to work with Sun Java under Linux, but in vain. However, I was quickly able to get it going using IBM's JVM and the corresponding javacomm package. You'll have to register with IBM to do the downloads. The packages you want are these: ibm-j

[Tinyos-help] preferred mechanism for submitting patches?

2007-01-18 Thread tony mancill
, http://www.tinyos.net/contrib.html, but I don't think these sort of changes warrant developer access to the CVS tree (I'm too green with TinyOS anyway). Should I just just post the list, attaching the output of a 'cvs diff' ?

[Tinyos-help] motelist patches to detect MIB520

2007-01-19 Thread tony mancill
Attached are two patches, one for motelist-win32.cpp and another for motelist-linux, that will allow you to see a mote attached with a MIB520 via USB. The cvs diffs were generated against tinyos-2.x, but the patches work under tinyos-1.x as well. The Windows patch may require a bit more tweaking

Re: [Tinyos-help] Serial communication error

2007-01-30 Thread Tony Mancill
Hi, What JVM are you using? It appears that you're using gcj. I'd recommend looking at your PATH or trying 'which java' to see which java is being invoked. You should setup your PATH to locate either the IBM or Sun JVM. Hope that helps, tony Spidernet Lists wrote: > Hi, > I am trying to talk

Re: [Tinyos-help] Re: hardware

2007-02-07 Thread Tony Mancill
Ted Carter wrote: > Ken Peirce yahoo.com> writes: > >> I am looking to get a couple of motes to use in real world testing of my >> code. > I see that Crossbow sells them. However, they appear to have a licensed tool > chain. I assume the tinyOS code and tool chain works just fine on them and >

Re: [Tinyos-help] Atmega 128L Mote

2007-02-09 Thread Tony Mancill
jim wrote: > Does anyone have any sort of comparison or benchmark > on what to expect with java execution on any of the Motes > with this part. > > I will take any examples you might have, since we are > still looking at platforms at this point. > > thanks > Jim Hi Jim, I'm not aware if any JVM

Re: [Tinyos-help] java Sample 200 20000 errors

2007-02-14 Thread Tony Mancill
Chris Byers wrote: > I am getting the following error when running the command: java Sample > 200 2 > > > > Exception in thread “main” java.lang.NoClassDefFoundError: > net/tinyos/message/MessageListener > > > > Can anyone tell me how I may resolve this? First, does the MessageListener

Re: [Tinyos-help] changing TOSBase packet size

2007-02-14 Thread Tony Mancill
Chris Byers wrote: > Does anyone know how I can change TOSBase so that it can handle > receiving a packet that has a data payload length of 38 bytes? Add a line like this to Makefile and recompile. (Adjust the length accordingly.) CFLAGS += -DTOSH_DATA_LENGTH=64 tony ___

Re: [Tinyos-help] xbow Mica2 battery test

2007-02-19 Thread tony mancill
Hi Sarfraz: Perhaps Crossbow's power management spreadsheet would be of use to you? http://www.xbow.com/Support/Support_pdf_files/PowerManagement.xls tony Sarfraz Nawaz wrote: > Hi all, > > Crossbow had released some battery life time results for the Mica2 motes > using AA batteries a

Re: [Tinyos-help] About TinyOS scheduler

2007-02-27 Thread Tony Mancill
[EMAIL PROTECTED] wrote: > I would like to know how to incerase the size of scheduler task queue > (default is 7). Also what changes to be made to make the scheduler a priority > based? there are papers on this but is there any implementation available so > that we can directly incorporate this.

Re: [Tinyos-help] installation problems

2007-02-28 Thread Tony Mancill
Philip Levis wrote: > On Feb 26, 2007, at 4:42 AM, fatima cabot wrote: > >> Hi. I've followed every instruction in the tutorial according to >> Tinyos2 Linux (Ubuntu) installation. I have had some problems with rpm >> packets (transforming into deb). But eventually, i have managed to >> installed

[Tinyos-help] JVM crashes running SerialForwarder on Linux

2007-03-01 Thread Tony Mancill
Dear TinyOS list: Has anyone else run into a problem with the JVM crashing while running T1's SerialForwarder? What's odd is that it doesn't always happen immediately. In fact, sometimes the system will run fine for long periods of time (I'm runing TestDrain and DrainBase on the motes), and then

Re: [Tinyos-help] Cannot install both tinyos-avr and tinyos-msp430 from Ubuntu repository

2007-03-05 Thread Tony Mancill
In this specific case, because it's just a readme, it won't hurt to force the override with: sudo dpkg --install --force-overwrite \ /var/cache/apt/archives/tinyos-msp430_2.0-1_i386.deb The other questions will need to be answered by the packager(s). HTH, tony Adam J. Forster wrote: > H

[Tinyos-help] patch for ./beta/TOSSIM-CC2420/HPLCC2420M.nc

2007-03-07 Thread Tony Mancill
Hello tinyos-help: Attached is a very minor patch for TOSSIM-CC2420/HPLCC2420M.nc. Without it, I was unable to compile due to an invalid lvalue error. Also, I wanted to ask the list if anyone else has experienced segfaults using TOSSIM to simulate telos. Sometimes it doesn't happen right away,

Re: [Tinyos-help] patch for ./beta/TOSSIM-CC2420/HPLCC2420M.nc

2007-03-07 Thread Tony Mancill
(doh... - It would help to actually attach the patch.) Tony Mancill wrote: > Hello tinyos-help: > > Attached is a very minor patch for TOSSIM-CC2420/HPLCC2420M.nc. Without > it, I was unable to compile due to an invalid lvalue error. > > Also, I wanted to ask the list

[Tinyos-help] Re: patch for ./beta/TOSSIM-CC2420/HPLCC2420M.nc

2007-03-09 Thread Tony Mancill
Attached is another patch containing fixes for both the build issue and the segfault issue I was having in TOSSIM-CC2420/HPLCC2420M.nc. The segfault was because the transmittingFrame was NULL in handleFrameSentEvent(). Perhaps the patch could be applied to the CVS tree? Thanks, tony Tony

Re: [Tinyos-help] motelist no device found

2007-03-13 Thread Tony Mancill
Hello Seham, This probably has to do with motelist. I don't have an eyesIFX mote to test with, but maybe can help you with the modifications to motelist to make it recognize your mote. The first thing to do is to look at the output of dmesg right after the mote has been attached to your USB bus.

Re: [Tinyos-help] Using AES support from chipcon in AES

2007-03-25 Thread tony mancill
You might also take a look at AMSecure. (Disclaimer: I haven't tried using it.) There's a poster on it from SenSys'06: http://doi.acm.org/10.1145/1182807.1182873 tony mike healy wrote: > Here is something I came across recently that might be helpful to you: > http://discovery.csc.ncsu.edu/~ksu

Re: [Tinyos-help] toscomm.so for 64bit systems

2007-03-25 Thread tony mancill
If you run into trouble rebuilding, another idea would be to run the TinyOS toolchain inside a 32-bit chroot. Google around and you should be able to find instructions for your distribution. If you're using Ubuntu, you can start here: http://ubuntuforums.org/showthread.php?t=24575 tony

Re: [Tinyos-help] flash error at address...

2007-04-02 Thread Tony Mancill
Hi Pedro, I use MIB520 boards with Linux and had all kinds of weird problems during programming until I realized that there were usbserial errors in dmesg about communicating with the FTDI chip. The solution for my system was the remove the ehci_hcd module, which was being automatically loaded by

Re: [Tinyos-help] CC2420 packet size

2007-04-03 Thread Tony Mancill
You can increase the data portion of the structure by defining TOSH_DATA_LENGTH in your Makefile. For example: CFLAGS += -DTOSH_DATA_LENGTH=64 tony Abhishek Jain wrote: > Hi, > > How can I change the default total packet size for CC2420 in > tinyos-1.x? As per the packet structure defined in A

Re: [Tinyos-help] Tinyos-help CRC and TOS_Msg

2007-04-10 Thread Tony Mancill
Hello Inderjit: Please see the very recent thread on this topic: http://mail.millennium.berkeley.edu/pipermail/tinyos-help/2007-April/023834.html Cheers, tony Inderjit Singh wrote: > Hi, > > Does anyone have a complete description on how and when the CRC should > be calculated when sent from t

Re: [Tinyos-help] Ubuntu & TinyOS & Existing AVR libs

2007-04-13 Thread Tony Mancill
I'd suggest changing the name of the tinyos-specific AVR toolchain packages. This will prevent the namespace collisions within the package manager. If the managers of the Stanford repository aren't interested in doing this, you can do it yourself. I don't remember the exact syntax off the top of

Re: [Tinyos-help] Ubuntu & TinyOS & Existing AVR libs

2007-04-13 Thread Tony Mancill
her things in the process? > > any thoughts? > > -leith > > > Philip Levis wrote: >> On Apr 13, 2007, at 8:52 AM, Tony Mancill wrote: >> >>> I'd suggest changing the name of the tinyos-specific AVR toolchain >>> packages. This will preve