Hi congtrats Now it is more readable. --- On Tue, 10/14/08, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
From: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Subject: Tinyos-help Digest, Vol 66, Issue 43 To: [email protected] Date: Tuesday, October 14, 2008, 6:58 PM Send Tinyos-help mailing list submissions to [email protected] To subscribe or unsubscribe via the World Wide Web, visit https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help or, via email, send a message with subject or body 'help' to [EMAIL PROTECTED] You can reach the person managing the list at [EMAIL PROTECTED] When replying, please edit your Subject line so it is more specific than "Re: Contents of Tinyos-help digest..." Today's Topics: 1. Re: how to form a group in CTP? (Omprakash Gnawali) 2. Specifying Topology and Sensing data to TOSSIM (lasa323) 3. need java help (Adeel Akhtar) 4. plz help me (joe winifred) 5. Re: plz help me (lasanthi Heendaliya) 6. Ivy (Deputy successor) 1.0 now available... (David Gay) 7. Re: need java help (Janos Sallai) On Thu, Oct 9, 2008 at 7:35 PM, mike smith <[EMAIL PROTECTED]> wrote: > Hi, > i'm trying to implement the clustering algorithm in tinyos-2.x, cuz T2 > does not have any tinyos implementation for clustering. > > i've a following questions: > > 1. CTP is the "addree free" anycast protocol, initially it forms a set of > trees and a node sends a data to one of the root node without specifying an > address of root node(i.e by sending to the next hop). But in my > implementation of clustering, all the member nodes needs to send that data > to a "particular cluster head". Is it possible to send a data to a > particular node in the CTP? How? No. You will have to change CTP to be able to do that. Before you change it, you have to redesign it. > 2. Should i need to modify the CTP library or can a group be formed using a > CTP application like multihopOscilloscope? Redesign. > 3. In CTP, if the network is static, are the ETX value change for node > pairs? Yes there can be short term variations. - om_p Hi all, I am trying to simulate a WSN in TinyOS 2.0.1 and TOSSIM. So, my first step was specifying the topology and I was able to do that. i generated a topology file using the java class "LinkLayerModel" . it gave the topology in the format of "source-destination-gain" and i added them to the radio model. I guess i have created and specified the topology correctly. Then, I want to specify the data to be sensed by nodes because I wants track the first time that a mote reads a valid information from the phenomenon. I studied the tutorial with the title "Lesson 5: Sensing ". the first example shows how to sense phenomenon in specific time intervals. but my problem is, who specify those data to be read? and how do i relate them with nodes? Suppose we sense the temperate.We can sense the temperature periodically, but different motes may read different temperatures. So, how do i give these details? Does anybody have any idea or any references that i can read and get understand?. I am looking forward to hearing from you. Please direct me, I am new to TinyOS and TOSSIM. Thanks and best regards! lasanthi Hi All, i have configured tinyos 2.1 with cygwin.it is running all application (nesc files) properly, also on hardware which is micaz mote,but java files are not running when i compile any java file it shows lot of errors and not getting any package or any class.i think it is not properly configured i have also set the classpath variable but unable to run java files.i have configures following path variables : export TOSROOT=/opt/tinyos-2.x export TOSDIR=$TOSROOT/tos export CLASSPATH=C:\tinyos\cygwin\opt\tinyos-2.x\support\sdk\java\tinyos.jar;. export MAKERULES=$TOSROOT/support/make/Makerules export PATH="C:\Program Files\Java\jdk1.6.0_05\bin:$PATH" export CLASSPATH="$CLASSPATH;.;c:/tinyos/cygwin/opt/tinyos-2.x/support/sdk/java/tinyos. jar" i have posted this problem before but unable to solve the problem, can any body help me out i am facing lot of problems.... Best Regards Adeel Hi.. I am new to tinyos.I have installed tinyos-2.x version. when i tried to work on make pc i encountered the following error, kindly help me on this $make clean $ make pc compiling Blink to a pc binary ncc -board=micasb -o build/pc/main.exe -g -O0 -pthread -target=pc -Wall -Wshadow -DDEF_TOS_AM_GROUP=0x7d -fnesc-nido-tosnodes=1000 -fnesc-cfile=build/pc/app.c Blink.nc -lm Unknown target pc Known targets for TinyOS directory /opt/tinyos-1.x/tos are: mica mica128 mica2 mica2dot pc1 Add more friends to your messenger and enjoy! Invite them now. make pc works with TinyOS-1 but, not with version 2. Use the following in order to build a simulation version. make micaz sim then it will create a folder called build and place generated files in build/micaz/ On Tue, Oct 14, 2008 at 1:21 PM, joe winifred <[EMAIL PROTECTED]> wrote: Hi.. I am new to tinyos.I have installed tinyos-2.x version. when i tried to work on make pc i encountered the following error, kindly help me on this $make clean $ make pc compiling Blink to a pc binary ncc -board=micasb -o build/pc/main.exe -g -O0 -pthread -target=pc -Wall -Wshadow -DDEF_TOS_AM_GROUP=0x7d -fnesc-nido-tosnodes=1000 -fnesc-cfile=build/pc/app.c Blink.nc -lm Unknown target pc Known targets for TinyOS directory /opt/tinyos-1.x/tos are: mica mica128 mica2 mica2dot pc1 Add more friends to your messenger and enjoy! Invite them now. _______________________________________________ Tinyos-help mailing list [email protected] https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help [I'm posting this announcement here as TinyOS 2.1 uses the Deputy C extensions to bring safety to TinyOS. Future versions of safe TinyOS should be switching to Ivy, and some of you might be interested in using Ivy standalone...] The first release of the Ivy, a compiler for an extended dialect of C which incorporates our Deputy (type-safety), HeapSafe (memory-management safety) and SharC (sharing safety for threaded code) extensions, is now available from http://ivy.cs.berkeley.edu/ivywiki/index.php/Main/Ivy ! Each of these three C extensions can be used independently or in any combination. The platforms supported by this release are Linux and Mac OS X; pre-compiled packages are available for x86 Ubuntu and Fedora 9. For discussions/questions/bug reports on Ivy, please use the existing Deputy mailing list at http://hal.cs.berkeley.edu/cgi-bin/mailman/listinfo/deputy. -- David Gay, for the Ivy team Can you post the error message you're getting when compiling java code? Also, can you post the output of the command "echo $CLASSPATH"? Janos On Tue, Oct 14, 2008 at 1:19 PM, Adeel Akhtar <[EMAIL PROTECTED]> wrote: Hi All, i have configured tinyos 2.1 with cygwin.it is running all application (nesc files) properly, also on hardware which is micaz mote,but java files are not running when i compile any java file it shows lot of errors and not getting any package or any class.i think it is not properly configured i have also set the classpath variable but unable to run java files.i have configures following path variables : export TOSROOT=/opt/tinyos-2.x export TOSDIR=$TOSROOT/tos export CLASSPATH=C:\tinyos\cygwin\opt\tinyos-2.x\support\sdk\java\tinyos.jar;. export MAKERULES=$TOSROOT/support/make/Makerules export PATH="C:\Program Files\Java\jdk1.6.0_05\bin:$PATH" export CLASSPATH="$CLASSPATH;.;c:/tinyos/cygwin/opt/tinyos-2.x/support/sdk/java/tinyos. jar" i have posted this problem before but unable to solve the problem, can any body help me out i am facing lot of problems.... Best Regards Adeel _______________________________________________ Tinyos-help mailing list [email protected] https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help _______________________________________________ Tinyos-help mailing list [email protected] https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help
_______________________________________________ Tinyos-help mailing list [email protected] https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help
