[Tinyos-help] Tossim Help on WSM

2014-04-24 Thread Diwakar Pandey
Hello Friends,
I am writing program for project Ad-hoc Routing Protocols for Wireless Sensor 
Networks. while running code on eclipse, i am getting below error message
set: MAKERULES = /opt/tinyos-2.x/support/make/Makerulesset: COMPONENT = 
src/make: Entering directory `/opt/AdHoc-WSN'mkdir -p build/telosbERROR: You 
need to create a top level file called src/.nc, or modify your local Makefile 
to point to the real name of your top level component.make: *** [src/.nc] Error 
1make: Leaving directory `/opt/AdHoc-WSN'finished (exit code: '2', took: 
00:02.350)
if any one share some guidance would be most helpful for me.
Regards
Diwakar Pandey___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] Tossim help

2013-05-07 Thread asma achour
hi

sorry for bothering , i saw the publication in tinyos help concerning
the NameError: name 'tossim' is not defined and i wonder if you have
any idea how to resolve it because i am having the same error when
trying to run the application RadioCountToLeds with the following
cmd : python test.py.
Please can you help me
Thank you

Regards
Asma Achour
___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help


Re: [Tinyos-help] TOSSIM help

2012-01-19 Thread Fernando Antonio Marques Filho
Check this link:  http://docs.tinyos.net/tinywiki/index.php/TOSSIM

Fernando


On Thu, Jan 19, 2012 at 3:25 AM, TUSHAR MAHESHWARI tushkiaw...@gmail.comwrote:

 I am new to TinyOS,I am using Tinyos-2.1.1
 How to run Blink application or any application on TOSSIM??
 What are the basic steps to simulate a program on TOSSIM

 ___
 Tinyos-help mailing list
 Tinyos-help@millennium.berkeley.edu
 https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] TOSSIM help

2012-01-18 Thread TUSHAR MAHESHWARI
I am new to TinyOS,I am using Tinyos-2.1.1
How to run Blink application or any application on TOSSIM??
What are the basic steps to simulate a program on TOSSIM
___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] Tossim help needed

2011-09-14 Thread Rafael de Oliveira Costa
Hi,

you can't install two applications in a network in tossim. With avrora you
could do this

Rafael de Oliveira Costa
M.Sc. Student
PPGI / DCC - iNCE/ UFRJ
Rio de Janeiro, RJ, Brazil

The first step to getting the things you want out of life is this : decide
what you want
Ben Stein


On Tue, Sep 13, 2011 at 4:42 PM, Raihan Kamal raihan...@gmail.com wrote:

 Is possible to install two different applications in a network in tossim?
 For instance a network has 5 nodes, 4 nodes will install one application and
 1 node will run another application. So far I have seen the documentation
 all nodes in the network (in tossim) have the identical application
 installed on it.

 Can any body help? Thanks

 On Sat, Sep 10, 2011 at 8:00 PM, 
 tinyos-help-requ...@millennium.berkeley.edu wrote:

 Send Tinyos-help mailing list submissions to
tinyos-help@millennium.berkeley.edu

 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
tinyos-help-requ...@millennium.berkeley.edu

 You can reach the person managing the list at
tinyos-help-ow...@millennium.berkeley.edu

 When replying, please edit your Subject line so it is more specific
 than Re: Contents of Tinyos-help digest...


 Today's Topics:

   1. Re: Porting c code with nc one (Sergio Valcarcel)
   2. Deluge T2 on ubuntu Lucid Lynx (Rafael de Oliveira Costa)
   3. Re: Porting c code with nc one (Maissa Ben Jamaa)
   4. change the routing table of aodv at tinyos1.x (Naila Frt)


 --

 Message: 1
 Date: Sat, 10 Sep 2011 15:21:10 +0200
 From: Sergio Valcarcel serteck...@gmail.com
 Subject: Re: [Tinyos-help] Porting c code with nc one
 To: Maissa Ben Jamaa maisa.benja...@gmail.com,Berekely univ
tinyos-help@millennium.berkeley.edu
 Message-ID:
CAMYe=
 yvm2fk3um3yd_f8bqwowedf7drwjvtbpjk24eray4q...@mail.gmail.com
 Content-Type: text/plain; charset=iso-8859-1

 Hi Malissa,

 Depending on the platform you are using, your CPU may accept  float or
 even
 double numbers. Also, depending on the architecture float computations
 might
 be accelerated with dedicated hardware or not.
 So the main points you have to verify is whether the extensively use of
 float operations will decrease the overall performance of your system. Of
 course, it is not the same to compute a numerical integration than to
 average two numbers...

 Another main point is the memory footprint. Float numbers typically could
 use 4 bytes. So you must take care of how much available RAM you have for
 your application.

 A final concern is that you can not use network data types (i.e.
 nx_struct)
 for communications since there is not defined a nx_float type.

 The other option, instead of using floats, could be to convert to integer,
 scaling as many decimals you want. For instance, 165.32 could be converted
 to 16532 (remembering that it is multiplied by 1e2).

 I hope it helps!
 Sergio


 On Sat, Sep 10, 2011 at 10:30 AM, Maissa Ben Jamaa 
 maisa.benja...@gmail.com
  wrote:

  Hello sir,
 
  Please can I ask you a question: does using float number in a nc code
 for
  real compilation matter?
 
  Thank you
 
  Best regards,
  Maissa Ben Jamaa
 
 
  2011/9/9 Maissa Ben Jamaa maisa.benja...@gmail.com
 
  Hello sir,
 
  I am very thankful for your answer, I tried to do something similar to
  blip code but I got the following error:
  gcc: cannot specify -o with -c or -S and multiple languages.
  Noting that I am now testing my code with Tossim.
 
  Best regards,
  Maissa Ben Jamaa
 
 
  2011/9/8 Sergio Valcarcel serteck...@gmail.com
 
  Dear Maissa,
 
  Please, check this thread:
 
 
 http://www.mail-archive.com/tinyos-help@millennium.berkeley.edu/msg36375.html
 
  It is pretty straight forward, but do not hesitate to mail me if you
 need
  further help.
 
  Cheers!
  Sergio
 
 
  On Thu, Sep 8, 2011 at 5:12 PM, Maissa Ben Jamaa 
  maisa.benja...@gmail.com wrote:
 
  Hello sir,
 
  I saw your interaction in tinyos help about porting c code with nc
 code.
  here is the link:
 
 http://www.mail-archive.com/tinyos-help@millennium.berkeley.edu/msg38966.html
 
  Please can you tell me the steps to follow in order to make this
  porting.
 
  Thanks.
 
  Best ragards,
  Maissa Ben Jamaa
 
 
 
 
 
 -- next part --
 An HTML attachment was scrubbed...
 URL:
 https://www.millennium.berkeley.edu/pipermail/tinyos-help/attachments/20110910/fcefa865/attachment-0001.htm

 --

 Message: 2
 Date: Sat, 10 Sep 2011 12:35:10 -0300
 From: Rafael de Oliveira Costa rafaeldeoliveiraco...@gmail.com
 Subject: [Tinyos-help] Deluge T2 on ubuntu Lucid Lynx
 To: tinyos-help tinyos-help@millennium.berkeley.edu
 Message-ID:

 cajk+k1sjvhu2gf3sle4q3pcsn0y2e+6iy85zwg8c7lx0gcv...@mail.gmail.com
 Content-Type: text/plain; 

[Tinyos-help] Tossim help

2011-09-09 Thread Seetha Devi
Hi all,

how to create cluster in tossim. which file should i change to form cluster.
is it possible to run tinyecc0.1 in tossim. 
I am working on key management. i want to distribute cluster keys and pairwise 
keys in tossim. any idea to proceed.___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] tossim help

2011-09-04 Thread Ramana Reddy
Did you install the python-dev package?
If not, please install and try again.


On Thu, Sep 1, 2011 at 10:14 PM, Seetha Devi seethadev...@yahoo.in wrote:

 i ve installed in windows using cygwin
 i have installed tinyos-2.x as per the instructios in wikipedia
 when i try to run blink program in tossim like
 make micaz sim
 it shows up error like

 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3316: error: ISO C++ forbids
declaration of `SWIG_TypeClientData' with no type
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3316: error: redefinition of
 `
int SWIG_TypeClientData'
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:2943: error: `int
SWIG_TypeClientData' previously defined here
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3316: error: initializer
 list
being treated as compound expression
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3317: error: ISO C++ forbids
declaration of `Py_INCREF' with no type
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3317: error: redefinition of
 `
int Py_INCREF'
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3238: error: `int Py_INCREF'
previously defined here
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3318: error: parse error
 before
`return'
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3320: error: syntax error
 befor

`[' token
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3473: error: parse error
 before
`}' token
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx: In function `void
 init_TOSSIM(
':
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3480: error: ISO C++ forbids
declaration of `PyObject' with no type
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3480: error: parse error
 before
`*' token
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3482: error: `m' undeclared
(first use this function)
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3484: error: `SWIG_globals'
undeclared (first use this function)
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3484: error:
 `SWIG_newvarlink'
undeclared (first use this function)
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3485: error: `SwigMethods'
undeclared (first use this function)
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3485: error: `Py_InitModule'
undeclared (first use this function)
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3486: error:
 `PyModule_GetDict'
undeclared (first use this function)
 make: *** [sim-exe] Error 1


 ___
 Tinyos-help mailing list
 Tinyos-help@millennium.berkeley.edu
 https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] tossim help

2011-09-02 Thread Seetha Devi
i m new to tinyos.
i want to simulate a sensor network scenario
how to create cluster in tossim(not in hardware)
how to ecchange keys in a cluster..

where to start. no idea on creating scenario___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] tossim help

2011-09-01 Thread Seetha Devi
i have installed tinyos-2.x as per the instructios in wikipedia
when i try to run blink program in tossim like 
make micaz sim
it shows up error like

/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3316: error: ISO C++ forbids
   declaration of `SWIG_TypeClientData' with no type
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3316: error: redefinition of `
   int SWIG_TypeClientData'
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:2943: error: `int
   SWIG_TypeClientData' previously defined here
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3316: error: initializer list
   being treated as compound expression
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3317: error: ISO C++ forbids
   declaration of `Py_INCREF' with no type
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3317: error: redefinition of `
   int Py_INCREF'
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3238: error: `int Py_INCREF'
   previously defined here
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3318: error: parse error before
   `return'
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3320: error: syntax error befor

   `[' token
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3473: error: parse error before
   `}' token
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx: In function `void init_TOSSIM(
   ':
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3480: error: ISO C++ forbids
   declaration of `PyObject' with no type
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3480: error: parse error before
   `*' token
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3482: error: `m' undeclared
   (first use this function)
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3484: error: `SWIG_globals'
   undeclared (first use this function)
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3484: error: `SWIG_newvarlink'
   undeclared (first use this function)
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3485: error: `SwigMethods'
   undeclared (first use this function)
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3485: error: `Py_InitModule'
   undeclared (first use this function)
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3486: error: `PyModule_GetDict'
   undeclared (first use this function)
make: *** [sim-exe] Error 1___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] tossim help

2011-09-01 Thread Rafael de Oliveira Costa
Did you install tinyos-2.x in windows or linux ?

On Thu, Sep 1, 2011 at 5:46 AM, Seetha Devi seethadev...@yahoo.in wrote:

 i have installed tinyos-2.x as per the instructios in wikipedia
 when i try to run blink program in tossim like
 make micaz sim
 it shows up error like

 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3316: error: ISO C++ forbids
declaration of `SWIG_TypeClientData' with no type
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3316: error: redefinition of
 `
int SWIG_TypeClientData'
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:2943: error: `int
SWIG_TypeClientData' previously defined here
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3316: error: initializer
 list
being treated as compound expression
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3317: error: ISO C++ forbids
declaration of `Py_INCREF' with no type
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3317: error: redefinition of
 `
int Py_INCREF'
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3238: error: `int Py_INCREF'
previously defined here
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3318: error: parse error
 before
`return'
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3320: error: syntax error
 befor

`[' token
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3473: error: parse error
 before
`}' token
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx: In function `void
 init_TOSSIM(
':
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3480: error: ISO C++ forbids
declaration of `PyObject' with no type
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3480: error: parse error
 before
`*' token
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3482: error: `m' undeclared
(first use this function)
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3484: error: `SWIG_globals'
undeclared (first use this function)
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3484: error:
 `SWIG_newvarlink'
undeclared (first use this function)
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3485: error: `SwigMethods'
undeclared (first use this function)
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3485: error: `Py_InitModule'
undeclared (first use this function)
 /opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3486: error:
 `PyModule_GetDict'
undeclared (first use this function)
 make: *** [sim-exe] Error 1

 ___
 Tinyos-help mailing list
 Tinyos-help@millennium.berkeley.edu
 https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] tossim help

2011-09-01 Thread Seetha Devi
i ve installed in windows using cygwin
i have installed tinyos-2.x as per the instructios in wikipedia
when i try to run blink program in tossim like 
make micaz sim
it shows up error like

/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3316: error: ISO C++ forbids
   declaration of `SWIG_TypeClientData' with no type
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3316: error: redefinition of `
   int SWIG_TypeClientData'
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:2943: error: `int
   SWIG_TypeClientData' previously defined here
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3316: error: initializer list
   being treated as compound expression
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3317: error: ISO C++ forbids
   declaration of `Py_INCREF' with no type
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3317: error: redefinition of `
   int Py_INCREF'
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3238: error: `int Py_INCREF'
   previously defined here
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3318: error: parse error before
   `return'
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3320: error: syntax error befor

   `[' token
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3473: error: parse error before
   `}' token
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx: In function `void init_TOSSIM(
   ':
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3480: error: ISO C++ forbids
   declaration of `PyObject' with no type
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3480: error: parse error before
   `*' token
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3482: error: `m' undeclared
   (first use this function)
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3484: error: `SWIG_globals'
   undeclared (first use this function)
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3484: error: `SWIG_newvarlink'
   undeclared (first use this function)
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3485: error: `SwigMethods'
   undeclared (first use this function)
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3485: error: `Py_InitModule'
   undeclared (first use this function)
/opt/tinyos-2.x/tos/lib/tossim/tossim_wrap.cxx:3486: error: `PyModule_GetDict'
   undeclared (first use this function)
make: *** [sim-exe] Error 1
___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] tossim help

2011-05-17 Thread Vamsidhar Addanki
hi there

fixed problem #2, it was just a problem with python installation, so I 
reinstalled python 2.6.5.

problem #1 still remains

thanks
vamsi

- Original Message -
From: Vamsidhar Addanki vadda...@purdue.edu
To: tinyos-help@millennium.berkeley.edu
Sent: Monday, May 16, 2011 11:21:15 AM
Subject: [Tinyos-help] tossim help

Hi there

1. I was wondering if it possible to run two separate terminals in linux one 
executing a copy of oscilloscope and the other executing base station and 
repeat the process of noticing the packet received on the java based 
oscilloscope application? 

2. when i run the python script TOSSIM.py in the apps/Oscilloscope folder 
generated by running make micaz sim , i get the following error 

TOSSIM.py:7: RuntimeWarning: Python C API version mismatch for module _TOSSIM: 
This Python has API version 1012, module _TOSSIM has version 1013.
  import _TOSSIM
TOSSIM.py:7: RuntimeWarning: Python C API version mismatch for module 
swig_runtime_data3: This Python has API version 1012, module swig_runtime_data3 
has version 1013.
  import _TOSSIM

please advise

thanks 
vamsidhar
___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help


[Tinyos-help] tossim help

2011-05-16 Thread Vamsidhar Addanki
Hi there

1. I was wondering if it possible to run two separate terminals in linux one 
executing a copy of oscilloscope and the other executing base station and 
repeat the process of noticing the packet received on the java based 
oscilloscope application? 

2. when i run the python script TOSSIM.py in the apps/Oscilloscope folder 
generated by running make micaz sim , i get the following error 

TOSSIM.py:7: RuntimeWarning: Python C API version mismatch for module _TOSSIM: 
This Python has API version 1012, module _TOSSIM has version 1013.
  import _TOSSIM
TOSSIM.py:7: RuntimeWarning: Python C API version mismatch for module 
swig_runtime_data3: This Python has API version 1012, module swig_runtime_data3 
has version 1013.
  import _TOSSIM

please advise

thanks 
vamsidhar
___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help


[Tinyos-help] TOSSIM HELP

2011-02-09 Thread akash rvs
Hi,

I am new to using TOSSIM.
I actually want to read the input values from a text file into the module
file but not sure on how to proceed
over it.
I am using python for simulation.
If its not possible to read from a file how other way can i input values
into the module file.

Thanks in Advance.
___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] TOSSIM HELP

2011-02-01 Thread Kartik Siddhabathula
Hi Akash,
Please send your questions to the tinyos forum. I have never worked with 
TOSSIM. I have tested all my code on real sensor motes. I will check it out how 
it works though, also, posting your question to the forum. 
NOTE: Hi all, Please look at the question and if possible help this guy.
Thanks in advance,Kartik


--- On Tue, 2/1/11, akash rvs akash9...@gmail.com wrote:

From: akash rvs akash9...@gmail.com
Subject: TOSSIM HELP
To: siddhabathulakar...@yahoo.com
Date: Tuesday, February 1, 2011, 8:11 AM

Hi,
I am Akash, an engineering student. I am new to TOSSIM and TinyOS.I was trying 
to run the blink application in the examples provided.But i couldnt figure out 
how to write the appropiate code in python to simulate the app.
I am attaching all the three files :BlinkC - module fileBlinkAppC - 
configuration fileto.py -python file
Do help me out with this.Thanking you in advance.



  ___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] Tossim help

2010-06-07 Thread praneeth goud
Hi,
1) Can i use message listening tools in tos like Listen,
MessageReader, or serialForwarder to listen to packets generate in TOSSIM
simulation??
2) How can i use Jtossim to simulate two motes one having
Basestation app and another node having some other app?
Thanks
___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] TOSSIM Help required

2009-10-04 Thread sissou
Hi,

Yes you'll be able to use TOSSIM in the xbuntos system.
Regards.

Sylvain

On Sun, 2009-10-04 at 00:29 +0530, nandini pandey wrote:
 hi folks, i have just got hold of the live cd of xbuntos
 i have a basic doubt can i work on tossim...if i don't have any
 hardware.
 the name so suggests yet...just want o be sure by the time i install
 it on a desktop.
 pl help.
 thanx
 ___
 Tinyos-help mailing list
 Tinyos-help@millennium.berkeley.edu
 https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help


[Tinyos-help] TOSSIM Help required

2009-10-03 Thread nandini pandey
hi folks, i have just got hold of the live cd of xbuntosi have a basic doubt
can i work on tossim...if i don't have any hardware.
the name so suggests yet...just want o be sure by the time i install it on a
desktop.
pl help.
thanx
___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] TOSSIM help

2009-04-17 Thread Tehsinullah khan
Sir,
  I need your help.I want to simulate deluge using tossim.I have
compiled
the DelugeBasic but i am getting the following warnings..
mkdir -p build/pc
  compiling DelugeBasic to a pc binary
ncc -o build/pc/main.exe -g -O0 -DDELUGE_LEDS  -pthread
-fnesc-nido-tosnodes=1000 -fnesc-simulate -Wall -Wshadow
-DDEF_TOS_AM_GROUP=0x7d -Wnesc-all -target=pc
-fnesc-cfile=build/pc/app.c -board=micasb -I%T/lib/Deluge -I%T/lib/Flash
-I%T/lib/Flash/STM25P -DDEFAULT_EEPROM_SIZE=0x10
-DIDENT_PROGRAM_NAME=\DelugeBasic\ -DIDENT_USER_ID=\root\
-DIDENT_HOSTNAME=\xcmd\ -DIDENT_USER_HASH=0x8471f77bL
-DIDENT_UNIX_TIME=0x49e63670L -DIDENT_UID_HASH=0xcfadbbbfL
DelugeBasic.nc -lm
/opt/tinyos-1.x/tos/platform/pc/eeprom.c:53: warning: non-atomic
accesses to shared variable `numMotes':
/opt/tinyos-1.x/tos/platform/pc/eeprom.c:68: warning:   non-atomic write
/opt/tinyos-1.x/tos/platform/pc/eeprom.c:54: warning: non-atomic
accesses to shared variable `moteSize':
/opt/tinyos-1.x/tos/platform/pc/eeprom.c:69: warning:   non-atomic write
/opt/tinyos-1.x/tos/platform/pc/eeprom.c:56: warning: non-atomic
accesses to shared variable `local_fd':
/opt/tinyos-1.x/tos/platform/pc/eeprom.c:75: warning:   non-atomic write
/opt/tinyos-1.x/tos/platform/pc/PowerStateM.nc: In function
`__nesc_nido_initialise':
/opt/tinyos-1.x/tos/platform/pc/PowerStateM.nc:1112: warning: passing
arg 1 of `memset' discards qualifiers from pointer target type
  compiled DelugeBasic to build/pc/main.exe

please help me out.
Please also help me in Deluge simulation or suggest any good resource.
i am working in tinyos-1.x

regards,
tehsin
___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help


[Tinyos-help] TOSSIM help

2009-04-01 Thread Tehsinullah khan
Hello,
I have simple sense application that senses every 1
minute, changes LEDs based on that reading, transmits that reading to
another mote, the receiving mote would be connected to a laptop and
transfer the received data along with its own reading of some other sensed
data to your laptop and display the result.I want its simulation using
tossim in tinyos-1.1.15
Any ideas how to do this?
--
Tehsin
___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help


Re: [Tinyos-help] tossim help

2009-03-17 Thread Moni GV

Hi!
I got a similar error, just make sure you put the same identation on your file

regards,

MONICA
--- El lun, 16/3/09, Roy Shea roys...@gmail.com escribió:
De: Roy Shea roys...@gmail.com
Asunto: Re: [Tinyos-help] tossim help
Para: arjun subu ajsubu.d...@gmail.com
CC: tinyos-help@millennium.berkeley.edu
Fecha: lunes, 16 marzo, 2009 5:54

Hello,

 this is requesting help regarding the tossim tutorial given on your
 site

Guessing you are talking about http://docs.tinyos.net/index.php/TOSSIM?

 i recieve an error at the line
 s=line.split()
 that is an identation error
 stating a missin identated block

Python code is white space sensitive.  Blocks have to be properly
indented for the script to execute.  While I don't know the precise code
that you are trying to run, my guess is that you've incorrect leading
white space.  Even mixing tabs and spaces can throw it off.  I recommend
reading through:

http://docs.python.org/tutorial/

that provides a great introduction to the very cool python langague.
Then go back to the script that you copied and try cleaning up the
leading white space.

Best of luck,
-Roy
___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help



  ___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] tossim help

2009-03-16 Thread arjun subu
hi,

this is requesting help regarding the tossim tutorial given on your site
for configuring a network in tinyos-2.x when i run python scripts

i recieve an error at the line
s=line.split()
that is an identation error
stating a missin identated block
 i am running the ubuntu version of tinyos-2.x (one cd installation)
pls help

R.S.V.P
with regards
thank you
___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] TOSSIM help

2009-03-16 Thread arjun subu
i am using the ubuntu version of tinyos-2.x using a vmware virtual machine
my tinyviz is not working .this is the* one cd installation* given in the
forum www.tinyos.net

pls i am in state of urgency

i need help setting up this correctly
___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] tossim help

2009-03-16 Thread Roy Shea
Hello,

 this is requesting help regarding the tossim tutorial given on your
 site

Guessing you are talking about http://docs.tinyos.net/index.php/TOSSIM?

 i recieve an error at the line
 s=line.split()
 that is an identation error
 stating a missin identated block

Python code is white space sensitive.  Blocks have to be properly
indented for the script to execute.  While I don't know the precise code
that you are trying to run, my guess is that you've incorrect leading
white space.  Even mixing tabs and spaces can throw it off.  I recommend
reading through:

http://docs.python.org/tutorial/

that provides a great introduction to the very cool python langague.
Then go back to the script that you copied and try cleaning up the
leading white space.

Best of luck,
-Roy
___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help


[Tinyos-help] tossim help

2009-03-13 Thread arjun subu
hi,

this is requesting help regarding the tossim tutorial given on your site
for configuring a network in tinyos-2.x when i run python scripts

i recieve an error at the line
s=line.split()
that is an identation error
stating a missin identated block

pls help

R.S.V.P
with regards
thank you
___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] Tossim help required

2009-01-09 Thread Adeel Akhtar
1. How to stop simulation using NesC code. I want to stop the simulation
when specific condition occurs. Any help I am using TinyOS 1.x

2. How to run a simulation for specific interval of time. For example 5 min.


-- 


Thanks  Best Regards

Adeel Akhtar
___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] tossim help required

2008-12-04 Thread Adeel Akhtar
Hi All:

How can we generate the graphs of an application in tossim for statistical
analysis? Whether we will write code in python for generating graphs or
there is any other way of doing this task.





Thanks and best regards

Adeel Akhtar
___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] tossim help required

2008-12-03 Thread funofnet Funofnet
Hi,
it is named LinkLayerModel.java

Regards,
F.F



  ___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] tossim help required

2008-12-02 Thread Adeel Akhtar
hi all
 i am working with tossim for tinyos 2.x and in tutorial i found a java
based tool to generate the topology file that is java
net.tinyos.sim.PropagationModel but there is no such java application in my
this directory can any body send this application to me as  it is missing in
my directory.

thanks and best regards
Adeel akhtar
___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] tossim help

2008-11-26 Thread Adeel Akhtar
Hi All:

I am using tinyos 2.x in windows with cygwin. When we simulate
any application in tossim how we simulate it by giving a single command.
what I have read in tutorial is first I have to run the python then by
running one event at time I can do simulation and this is very difficult  way
and I am unable to understand the simulation at all .can anybody tell me the
easy way of simulating application in tossim as available in tinyos 1.x.

Thanks and best regards

Adeel Akhtar
___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] TOSSIM help

2008-07-31 Thread Paul Stickney
It varies by version, some links to see:

http://docs.tinyos.net/index.php/TOSSIM
http://www.tinyos.net/tinyos-1.x/doc/tutorial/lesson5.html
http://www.tinyos.net/tinyos-1.x/doc/tython/manual.html
http://www.cs.berkeley.edu/~pal/pubs/nido.pdf

On Tue, Jul 29, 2008 at 2:22 AM, kashif.saghar [EMAIL PROTECTED] wrote:
 Dear all
 I am new to TOSSIM. I have read some help documents and manuals for TOSSIM.
 I want to ask if there any Book on TOSSIM that can help.
 Thanks

 
 This e-mail is intended solely for the addressee. It may contain private and
 confidential information. If you are not the intended addressee, please take
 no action based on it nor show a copy to anyone. Please reply to this e-mail
 to highlight the error. You should also be aware that all electronic mail
 from, to, or within Northumbria University may be the subject of a request
 under the Freedom of Information Act 2000 and related legislation, and
 therefore may be required to be disclosed to third parties.

 This e-mail and attachments have been scanned for viruses prior to leaving
 Northumbria University. Northumbria University will not be liable for any
 losses as a result of any viruses being passed on.
 ___
 Tinyos-help mailing list
 Tinyos-help@millennium.berkeley.edu
 https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help


[Tinyos-help] TOSSIM help

2008-07-29 Thread kashif.saghar
Dear all
I am new to TOSSIM. I have read some help documents and manuals for TOSSIM. I 
want to ask if there any Book on TOSSIM that can help.
Thanks


This e-mail is intended solely for the addressee. It may contain private and 
confidential information. If you are not the intended addressee, please take no 
action based on it nor show a copy to anyone. Please reply to this e-mail to 
highlight the error. You should also be aware that all electronic mail from, 
to, or within Northumbria University may be the subject of a request under the 
Freedom of Information Act 2000 and related legislation, and therefore may be 
required to be disclosed to third parties.  

This e-mail and attachments have been scanned for viruses prior to leaving 
Northumbria University. Northumbria University will not be liable for any 
losses as a result of any viruses being passed on.
___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] TOSSIM help

2008-07-14 Thread Abhishek Anand
Hi all,
Where can I find a detailed tutorial on TOSSIM for TinyOS2.x except for
this:
*http://docs.tinyos.net/index.php/TOSSIM*http://www.cs.berkeley.edu/~pal/pubs/nido.pdf
It describes how to inject packets but not how to retreive packets in the
python program.


http://www.cs.berkeley.edu/~pal/pubs/nido.pdf
The above tutorial describes how to use java serialforwarder with TinyOS 1.x
. Is their something similar in 2.x?

Basically, I had tested my app with real motes.It had 2 programs, one for
base-station and the other one for all other motes. On the PC, I had a java
program to send and receive packets from base-station.
How can I sumulate it in TOSSIM?

Regards,
Abhishek
IIT Guwahati
2008/7/7 白惠文 [EMAIL PROTECTED]:



  TOSSIM manuals say that all the motes run the same program. Cant we have
 a special program for mote0?
  I want to simulate my actual implementation in which i had 2 programs-
 one for the basestation(mote0)
   and other for all other motes. How can I do that without the pain of
 combining both the programs to a single
  program?

 Co-ask.

   Moreover, nido.pdf says that there is a visualizer (tinyviz.jar) but i
 couldnt locate it. Is there any other visualizer  available at the moment?

 tinyos-1.x/tools/java/net/tinyos/sim/TinyViz.java. Don't know about
 tinyos-2.x though.

 Lancey





 --
 使用新一代 Windows Live Messenger 轻松交流和共享! 立即体验! http://im.live.cn/

___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] TOSSIM help

2008-07-07 Thread Abhishek Anand
Hi all,
TOSSIM manuals say that all the motes run the same program. Cant we have a
special program for mote0?
I want to simulate my actual implementation in which i had 2 programs- one
for the basestation(mote0)
and other for all other motes. How can I do that without the pain of
combining both the programs to a single program?
Moreover, nido.pdf says that there is a visualizer (tinyviz.jar) but i
couldnt locate it. Is there any other visualizer available at the moment?
Is tython going to be a part of the next tinyOS release?

Regards,
Abhishek Anand
IIT Guwahati
___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] TOSSIM help

2008-07-07 Thread 白惠文



 TOSSIM manuals say that all the motes run the same program. Cant we have a 
 special program for mote0?
 I want to simulate my actual implementation in which i had 2 programs- one 
 for the basestation(mote0)
 and other for all other motes. How can I do that without the pain of 
 combining both the programs to a single
 program?

Co-ask.


 Moreover, nido.pdf says that there is a visualizer (tinyviz.jar) but i 
 couldnt locate it. Is there any other visualizer  available at the moment?

tinyos-1.x/tools/java/net/tinyos/sim/TinyViz.java. Don't know about tinyos-2.x 
though.

Lancey



 

_
使用 MSN 有问题怎么办?客服机器人来帮忙!
http://help.msn.cn/___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] Tossim help

2007-05-09 Thread Boushra MAALA
i use Tossim (tinyos 1, windows XP ):
i have two questions:

First: 

I want to know ,for an application which  is simulated with Tossim , how can i 
save the sent and received messages, because i need to do some statistics about 
these messages,and is there a way for doing these statistcs within Tossim.
 
Second:
how can i  can  use  plug-in plot in Tossim? i did not find any reference that 
helps me.


 
-
 Get your own web address.
 Have a HUGE year through Yahoo! Small Business.___
Tinyos-help mailing list
Tinyos-help@Millennium.Berkeley.EDU
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] Tossim help

2007-05-09 Thread Munaretto, Daniele
1)Using dbg messages in your code, then print them as output
with ./build/pc/main.exe ...options...  print.txt
for example 
and then, you might use grep for extracting what u need 

2)i think there is an explanation throgh the tutorial, or consider
TOSSIM: a simulator for tinyOS Networks by P.Levis and N.Lee
i found it really useful 

On Wed, 2007-05-09 at 05:20 -0700, Boushra MAALA wrote:
 i use Tossim (tinyos 1, windows XP ):
 i have two questions:
 
 First: 
 
 I want to know ,for an application which  is simulated with Tossim ,
 how can i save the sent and received messages, because i need to do
 some statistics about these messages,and is there a way for doing
 these statistcs within Tossim.
  
 Second:
 how can i  can  use  plug-in plot in Tossim? i did not find any
 reference that helps me.
 
 
 
 
 __
 Get your own web address.
 Have a HUGE year through Yahoo! Small Business.
 ___
 Tinyos-help mailing list
 Tinyos-help@Millennium.Berkeley.EDU
 https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help
___
Tinyos-help mailing list
Tinyos-help@Millennium.Berkeley.EDU
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help


[Tinyos-help] TOSSIM HELP

2007-05-09 Thread santosh bhima

Hi,
Can anyone help me out in implementing multi hop protocol in tossim.I just
want to know how to start.
Thanks in advance

--
with regards,
santosh bhima.
___
Tinyos-help mailing list
Tinyos-help@Millennium.Berkeley.EDU
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] TOSSIM help: how to run different codes?

2007-05-09 Thread Hui Zhang
Hi, I am wondering how can I run different codes in TOSSIM instead 
simulating all the motes with same codes? 
e.g simulate one sender with sending code and one recevier with 
receving code...
Thanks.

  Hui

___
Tinyos-help mailing list
Tinyos-help@Millennium.Berkeley.EDU
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help


Re: [Tinyos-help] Tossim help

2007-05-09 Thread Sarfraz Nawaz

If your tinyos version has tython, then all of the sent packets are actually
stored on tossim/tython. Have a look at the following URL on how to access
these stored packets.

http://www.tinyos.net/tinyos-1.x/doc/tython/manual.html#sec:packets

On 5/9/07, Boushra MAALA [EMAIL PROTECTED] wrote:


i use Tossim (tinyos 1, windows XP ):
i have two questions:

First:

I want to know ,for an application which  is simulated with Tossim , how
can i save the sent and received messages, because i need to do some
statistics about these messages,and is there a way for doing these statistcs
within Tossim.

Second:
how can i  can  use  plug-in plot in Tossim? i did not find any reference
that helps me.

--
 Get your own web 
address.http://us.rd.yahoo.com/evt=49678/*http://smallbusiness.yahoo.com/domains/?p=BESTDEAL
Have a HUGE year through Yahoo! Small Business.


___
Tinyos-help mailing list
Tinyos-help@Millennium.Berkeley.EDU
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

___
Tinyos-help mailing list
Tinyos-help@Millennium.Berkeley.EDU
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] TOSSIM HELP

2007-05-02 Thread santosh bhima

Hello,

I need help about the surge application in tossim.Can anyone explain how
multi hoping is implemented
in surge application in tossim.And if possible i need explanation about
surge module.Thanks in advance.
--
with regards,
santosh bhima.
___
Tinyos-help mailing list
Tinyos-help@Millennium.Berkeley.EDU
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] TOSSIM HELP

2007-04-27 Thread santosh bhima

Hi,
Can anyone suggest a good tutorial for writing applications in
nesc.Thankxin advance
with regards
santosh
___
Tinyos-help mailing list
Tinyos-help@Millennium.Berkeley.EDU
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

RE: [Tinyos-help] TOSSIM HELP

2007-04-27 Thread Venkatesh S.
which TOSSIM are you reffering to?
 
In Tossim 1.x, the base station node Id is fixed to 0.  where as in Tossim 2.x, 
the application needs to inform (set) the routing layer whether it is the base 
station or not (interface RoutingControl for Collection Protocol).  
 
--
Regards, 
Venkatesh S




From: santosh bhima [EMAIL PROTECTED]
Subject: [Tinyos-help] TOSSIM HELP
To: Tinyos-help@millennium.berkeley.edu
Message-ID:
[EMAIL PROTECTED]
Content-Type: text/plain; charset=iso-8859-1

How to specify which mote is base station in tossim

winmail.dat___
Tinyos-help mailing list
Tinyos-help@Millennium.Berkeley.EDU
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] TOSSIM HELP

2007-04-27 Thread santosh bhima

Hi,
Iam running an application,I need to know with how many nodes my application
is running.
How to know number of nodes with which the application is
executing.Thanksin advance
with regards,
santosh.
___
Tinyos-help mailing list
Tinyos-help@Millennium.Berkeley.EDU
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] TOSSIM HELP

2007-04-26 Thread Sarfraz Nawaz

Upgrade to tinyos-1.1.15cvs

On 4/26/07, santosh bhima [EMAIL PROTECTED] wrote:


hello,
I have presently tinyos version tinyos-1.1.0-1is.exe i want powerprofile
plugin in my tinyos is there any way tp upgrade it.

___
Tinyos-help mailing list
Tinyos-help@Millennium.Berkeley.EDU
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

___
Tinyos-help mailing list
Tinyos-help@Millennium.Berkeley.EDU
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] TOSSIM HELP

2007-04-26 Thread Sarfraz Nawaz

http://www.tinyos.net/dist-1.1.0/snapshot-1.1.15Dec2005cvs/doc/install-snapshots.html

On 4/26/07, santosh bhima [EMAIL PROTECTED] wrote:


i have downloaded it but how should i install it.

On 4/26/07, Sarfraz Nawaz  [EMAIL PROTECTED] wrote:

 Upgrade to tinyos-1.1.15cvs

 On 4/26/07, santosh bhima  [EMAIL PROTECTED] wrote:
 
  hello,
  I have presently tinyos version tinyos-1.1.0-1is.exe i want
  powerprofile plugin in my tinyos is there any way tp upgrade it.
 
  ___
  Tinyos-help mailing list
  Tinyos-help@Millennium.Berkeley.EDU
  https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help
 
 



___
Tinyos-help mailing list
Tinyos-help@Millennium.Berkeley.EDU
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] TOSSIM HELP

2007-04-21 Thread santosh bhima

hello,
i wana get the power readings in tossim hw could i get it
thanks in advance
santosh
___
Tinyos-help mailing list
Tinyos-help@Millennium.Berkeley.EDU
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] TOSSIM HELP

2007-04-21 Thread santosh bhima

Hello,
   I have tinyos1.1 installed in my system but it doesnt contain power
tossim can anyone suggest how upgrade it.thanx in advance
___
Tinyos-help mailing list
Tinyos-help@Millennium.Berkeley.EDU
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] TOSSIM HELP

2007-04-21 Thread yogesh gavali
hi 
you can use PowerTOSSIM to get the power readings

Yogesh

   
-
Ahhh...imagining that irresistible new car smell?
 Check outnew cars at Yahoo! Autos.___
Tinyos-help mailing list
Tinyos-help@Millennium.Berkeley.EDU
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] TOSSIM HELP

2007-04-20 Thread santosh bhima

How to specify which mote is base station in tossim
___
Tinyos-help mailing list
Tinyos-help@Millennium.Berkeley.EDU
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] TOSSIM HELP

2007-04-20 Thread vinay murthy
U can do it by specifying 0 for the base station.

cheers,vinay.

santosh bhima [EMAIL PROTECTED] wrote: How to specify which mote is base 
station in tossim
 ___
Tinyos-help mailing list
Tinyos-help@Millennium.Berkeley.EDU
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

   
-
Ahhh...imagining that irresistible new car smell?
 Check outnew cars at Yahoo! Autos.___
Tinyos-help mailing list
Tinyos-help@Millennium.Berkeley.EDU
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] TOSSIM Help

2007-04-16 Thread İlker Özçelik

Hi,
I am new in this group. I started to work on TinyOs few days ago.My machine
runs WinXP with Cygwin. I am trying to run TestTinyViz app in Lesson 5 . But
when i try to build app with make pc command  gcc: unrecognised option '
-pthread'  error occur
But it builds main.exe
After i build tinyviz.jar, i placed tinyviz file in the TestTinyViz folder.
But this time  bash: tinyviz: command not found  error occured.
And I couldnt run this app.
Thanks for your help.
Ilker
___
Tinyos-help mailing list
Tinyos-help@Millennium.Berkeley.EDU
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] TOSSIM HELP

2007-03-30 Thread Bibudh Lahiri

What results do u want? Do u want to see the packet exchanges? If u want to
visualize the graph and the packet exchanges, use TinyViz with appropriate
plugins.

On 3/30/07, santosh bhima [EMAIL PROTECTED] wrote:


hi,
I have a problem.after creating and simulating a network in tossim.how to
get the results in the form of a graph using tossim

___
Tinyos-help mailing list
Tinyos-help@Millennium.Berkeley.EDU
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

___
Tinyos-help mailing list
Tinyos-help@Millennium.Berkeley.EDU
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] Tossim Help

2007-03-13 Thread Prashant Mane

Hi,

I am using tinyos2.x on cygwin and trying to use TOSSIM but facing
compilation errors.
After compiling Blink application and getting the below mentioned error.

make micaz sim

/usr/bin/ld: unrecognized option '--dll-search-prefix=cyg'
/usr/bin/ld: use the --help option for usage information
collect2: ld returned 1 exit status
make: *** [sim-exe] Error 1

I am not able to figure out the solution for this and will be thankful if i
can get some help regarding this.

Eagerly waiting for the reply.

Thanks,
Prashant
___
Tinyos-help mailing list
Tinyos-help@Millennium.Berkeley.EDU
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help