Re: [Tinyos-help] toscomm works on ubuntu hardy?

2008-07-25 Thread Zainul M Charbiwala
Hi, You need to use the sun-java6-jre package instead of the ones that ship standard with Hardy. You will also need to change the link in /etc/alternatives/java to usr/lib/jvm/java-6-sun/jre/bin/java Regards, Zainul. On Fri, Jul 25, 2008 at 9:32 PM, John Regehr <[EMAIL PROTECTED]> wrote: > Is

[Tinyos-help] toscomm works on ubuntu hardy?

2008-07-25 Thread John Regehr
Is toscomm working for anyone using Ubuntu Hardy? Running a command line like this: java net.tinyos.sf.SerialForwarder -comm serial@/dev/ttyUSB0:mica2 Gives me: The toscomm JNI library was not found. Check that your tinyos-tools package is installed and try rerunning tos-install-jni

Re: [Tinyos-help] nesc1: unknown target

2008-07-25 Thread Eric Keller
Your environment variables or tinyos are not set up properly. Read the output of make, and note all the = signs with nothing on the right. Just as an example, output should say -target=telosb Eric On Fri, Jul 25, 2008 at 1:25 PM, Jack Travis <[EMAIL PROTECTED]> wrote: > I am having problem with

Re: [Tinyos-help] help please : turn off mote & packet loss rate ?

2008-07-25 Thread fatima zohra
2008/7/25 Omprakash Gnawali <[EMAIL PROTECTED]>: > On Fri, Jul 25, 2008 at 7:37 AM, fatima zohra <[EMAIL PROTECTED]> > wrote: > > > > > > 2008/7/25 Omprakash Gnawali <[EMAIL PROTECTED]>: > >> > >> On Wed, Jul 23, 2008 at 11:45 AM, fatima zohra <[EMAIL PROTECTED]> > >> wrote: > >> > > >> > > >> >

Re: [Tinyos-help] Collection ack retransmission

2008-07-25 Thread Nahr ...
Aha I am understanding now Thank you Dr Omprakash really I am so grateful. Cheers, Nahr Elk ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] help please : turn off mote & packet loss rate ?

2008-07-25 Thread Omprakash Gnawali
On Fri, Jul 25, 2008 at 7:37 AM, fatima zohra <[EMAIL PROTECTED]> wrote: > > > 2008/7/25 Omprakash Gnawali <[EMAIL PROTECTED]>: >> >> On Wed, Jul 23, 2008 at 11:45 AM, fatima zohra <[EMAIL PROTECTED]> >> wrote: >> > >> > >> > 2008/7/23 Omprakash Gnawali [EMAIL PROTECTED]: >> > >> >> >> >> If you pu

[Tinyos-help] Is Drip a one-to-many or a many-to-many protocol?

2008-07-25 Thread John Hendrie
Hi, Is Drip designed so one node changes the variable and the rest listen or is it designed so that every node in the network can change the shared variable? I ask because of the way the sequence number is generated in DisseminatorP.nc: /* Increment the counter and append the local node ID. *

Re: [Tinyos-help] sleep/suspend/wait

2008-07-25 Thread Michael Schippling
That is kinda what the lowpower and xmesh systems do. Have a look at how they work. MS deepanshu vasal wrote: > hello, > I wanted to know if there's any sleep/suspend/wait function in tinyos. > actually i want to discover neighbors of the mote, so it broadcasts a > message and waits for some tim

Re: [Tinyos-help] UART with RADIO stack

2008-07-25 Thread Michael Schippling
Which UART? I think the USB side uses UART1 and that UART0 is shared by the Radio and the expansion port. Thus U0 needs some kind of arbitration if you want to use it yourself, and that could lead to interference. Perhaps some interrupt handling problem crept into T2 such that the two UARTs can't

[Tinyos-help] nesc1: unknown target

2008-07-25 Thread Jack Travis
I am having problem with my TOS installation. $ make telosb mkdir -p build/telosb compiling BlinkAppC to a telosb binary ncc -o build/telosb/main.exe -Os -O -mdisable-hwmul -fnesc-target= -gcc= -mmcu= -fnesc-separator=__ -Wall -Wshadow -DDEF_TOS_AM_GROUP=0x7d -Wnesc-all -target=telosb -fnesc-c

Re: [Tinyos-help] help please : turn off mote & packet loss rate ?

2008-07-25 Thread fatima zohra
2008/7/25 Omprakash Gnawali <[EMAIL PROTECTED]>: > On Wed, Jul 23, 2008 at 11:45 AM, fatima zohra <[EMAIL PROTECTED]> > wrote: > > > > > > 2008/7/23 Omprakash Gnawali [EMAIL PROTECTED]: > > > >> > >> If you put sequence numbers in the packet, you can find out which > >> packets were not received.

Re: [Tinyos-help] help please : turn off mote & packet loss rate ?

2008-07-25 Thread Omprakash Gnawali
On Wed, Jul 23, 2008 at 11:45 AM, fatima zohra <[EMAIL PROTECTED]> wrote: > > > 2008/7/23 Omprakash Gnawali [EMAIL PROTECTED]: > >> >> If you put sequence numbers in the packet, you can find out which >> packets were not received. For example, you sent sequence numbers 1 >> through 10 but and recei

Re: [Tinyos-help] Collection ack retransmission

2008-07-25 Thread Omprakash Gnawali
On Thu, Jul 24, 2008 at 11:32 PM, Nahr ... <[EMAIL PROTECTED]> wrote: > > > 2008/5/13 Nahr ... <[EMAIL PROTECTED]>: >> >> Thank you very much. >> yes yes colection concerns routing not link layer. >> >> Cheers, >> Nahr Elk >> >> 2008/5/13, Omprakash Gnawali <[EMAIL PROTECTED]>: >>> >>> On Mon, May

Re: [Tinyos-help] Weird behavior of Timer.

2008-07-25 Thread jordanow
Thanks Paul you've right with wiring :-) I still make stupid misstakes :-/. It was this same instance. Re 1). It's weird .. but it works ... somehow :-) Jordan 1) Verify all assumptions, since the timers fire so fast (JobTimer is fired only 10ms after StopTimer?), could it really be wo

Re: [Tinyos-help] sleep/suspend/wait

2008-07-25 Thread Shikhar Sachan
The component BusyWaitCounterC and interface BusyWait may come in handy But do not wait for long using them...It gives some problem ... for waiting for a longer time as in seconds use the timer... Shikhar On Fri, Jul 25, 2008 at 9:15 AM, deepanshu vasal <[EMAIL PROTECTED]> wrote: > hello, >

[Tinyos-help] sleep/suspend/wait

2008-07-25 Thread deepanshu vasal
hello, I wanted to know if there's any sleep/suspend/wait function in tinyos. actually i want to discover neighbors of the mote, so it broadcasts a message and waits for some time say 2sec, to collect replies in a neighbor cache. SO in my function i want a sleep function such that after sending a p

Re: [Tinyos-help] UART with RADIO stack

2008-07-25 Thread Anton
Hi, I use uart and radio on TelosB and I have the same problem. A mote should receive a radio packet, extract some data and forward it to computer. When packets are sent by only one transmitter and arrive infrequently (say one packet per second) everything is all right, the mote receives packe