[Tinyos-help] Problems with TinyOS install on Ubuntu 10.10

2010-11-02 Thread Joey Wilson
All, I am having a problem installing TinyOS 2.1.1 on Ubuntu 10.10. I run into conflicts when it tries to install the avrdude, avr-gcc, and avr-binutils tinyos packages. Has anyone else had this problem? Does anyone know when Ubuntu 10.10 will be included in supported distributions? Are there any

Re: [Tinyos-help] Problems with TinyOS install on Ubuntu 10.10

2010-11-03 Thread Joey Wilson
is not one for maverick yet. On Tue, Nov 2, 2010 at 6:26 PM, Eric Decker wrote: > what exactly does it say? > > > On Tue, Nov 2, 2010 at 3:22 PM, Joey Wilson wrote: > >> All, >> >> I am having a problem installing TinyOS 2.1.1 on Ubuntu 10.10. I run into >>

Re: [Tinyos-help] Problems with TinyOS install on Ubuntu 10.10

2010-11-04 Thread Joey Wilson
s it is old hasn't been >>> updated in a while. >>> >>> You could remove the already installed binutils-avr, gcc-avr, and >>> avrdude. Then install the tinyos repos. >>> >>> Then I think you can upgrade the packages using the binutils-avr, &

[Tinyos-help] MSP430 General IO on TelosB hardware

2010-12-14 Thread Joey Wilson
Hello all, I am trying to figure out an easy way to turn on/off a digital output from the TelosB hardware from TinyOS software. I have been searching the web and found that some people say to use the MSP430GeneralIOC component in the application wiring, but this is not working. I have tried a lot

[Tinyos-help] TelosB battery power

2011-03-24 Thread Joey Wilson
All, I have a question about the TelosB battery power. I'm wondering if I leave a TelosB plugged into a USB port, so it's getting it's power from the port, and also leave two AA batteries inserted, will the AA batteries drain at all if the USB continues to deliver power? Is there a circuit in the

[Tinyos-help] TinyOS on Linux AMD64 OS

2008-02-06 Thread Joey Wilson
I am having a lot of problems installing tinyOS on my linux (Ubuntu 7.10) AMD 64-bit operating system. I have tried using the stanford repositories, converting the RPMs to DEB files, and a lot of other things, but nothing is working. Any suggestions or help? Thanks. _

[Tinyos-help] Using temperature sensor Sensirion Sht11 on Telosb

2008-03-31 Thread Joey Wilson
Hello all, I am running into trouble trying to use the temperature sensor on the telosb motes. Does anyone have some example code on how to take a temperature measurement on the telosb hardware? I am attempting to use the Sensirion Sht11 that comes with the telosb, but I get the following error:

Re: [Tinyos-help] Using temperature sensor Sensirion Sht11 on Telosb

2008-03-31 Thread Joey Wilson
rote: > In TemeperatureC you have the wrong interface specified. You want the > Read interface, not a SensirionsSht11 interface. > > Kevin > > On Mon, Mar 31, 2008 at 1:05 PM, Joey Wilson <[EMAIL PROTECTED]> > wrote: > > Hello all, > > > > I am running

Re: [Tinyos-help] Using temperature sensor Sensirion Sht11 on Telosb

2008-03-31 Thread Joey Wilson
TemperatureC.Temp -> SensirionSht11C.Temperature; > > Kevin > > On Mon, Mar 31, 2008 at 2:07 PM, Joey Wilson <[EMAIL PROTECTED]> > wrote: > > Thanks kevin. I changed the interface to > > > > uses interface Read as TempSensor; > > > > I

[Tinyos-help] TinyOS Web Forum

2008-04-01 Thread Joey Wilson
Maybe this isn't the appropriate place to post this request, but I think that the TinyOS community could benefit from a web forum for posting help question/discussions. I recently signed up for this list, but I immediately became overwhelmed with receiving so many emails every day. The digest is

[Tinyos-help] TinyOS Search Engine

2008-04-30 Thread Joey Wilson
Hello Everyone, I created a TinyOS search engine that I thought might be useful for people in finding help and info that has already been posted online. The nice thing about this search engine is that it only returns results that are found on sites that are manually specified. Here is a link so

Re: [Tinyos-help] TinyOS Search Engine

2008-05-01 Thread Joey Wilson
if it hasn't been done already. > > -David > > > > > -- > > *From:* [EMAIL PROTECTED] [mailto: > [EMAIL PROTECTED] *On Behalf Of *Joey Wilson > *Sent:* Wednesday, April 30, 2008 6:08 PM > *To:* tinyos-help@millennium.berkele

[Tinyos-help] Matlab, Basestation, and Reading the Serial Port

2008-05-20 Thread Joey Wilson
Hello all, I am trying to read data directly from the serial port, using Matlab and the Basestation tinyos program. When I use the "java net.tinyos.tools.Listen" program, it appears that all my packet data is being received by the basestation correctly. However, I would like to read the data dir

Re: [Tinyos-help] Best way to increase packet size?

2008-05-27 Thread Joey Wilson
TOSH_DATA_LENGTH in the message.h (tos/types) > > On Tue, May 27, 2008 at 12:02 PM, Joey Wilson <[EMAIL PROTECTED]> > wrote: > > I need to increase the packet size for my tinyos application to something > > greater than the 28 byte default. I am using tinyOS 2 and working with &g

Re: [Tinyos-help] Best way to increase packet size?

2008-05-27 Thread Joey Wilson
, May 27, 2008 at 1:49 PM, Michael Schippling <[EMAIL PROTECTED]> wrote: > You _should_ be able to do it with a compiler command line define > in the makefile to override TOSH_DATA_LENGTH... > > MS > > Joey Wilson wrote: > >> Thanks. I had to change both files her