[Tinyos-help] CC1000 maximum throughput

2008-04-29 Thread Edgar Charry

Hi all,  Does anyone know if the maximum throughput achievable with the CC1000 
radio is more than 42.93 packets/s (or has already achieved)? In which 
conditions (packet size, baudrate, singlehop, Manchester Coding/NRZ, single 
channel TX/RX with no limitation in carrier bandwidth and frequency deviation 
for FSK tx)? I'm trying to pump up the pckt/s tx using a Mica2Dot as tx and 
Mica2 as rx, modifying the default SW from XBow (XSensor/TOSBase). Where could 
I read related information about it?Thanks guys,Edgar Charry  
_
News, entertainment and everything you care about at Live.com. Get it now!
http://www.live.com/getstarted.aspx___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] C function in a nesC Application

2008-04-29 Thread antonio gonga

Dear all, 
I'm having so many problems to embed a C code in a nesC Application.
File: utime.h
unsigned long getTime();
--
File: utime.c
#include
#include

struct timeval tm;
unsigned long getTime(){
  gettimeofday(&tm, NULL);
  return tm.tv_usec;
}

Makefile:
COMPONENT = MyAPP
BUILD_EXTRA_DEPS = utime.o
LDFLAGS = utime.o   //I'm not sure about this flag,

utime.o: utime.c utime.h
gcc -g -c utime.c
-
MyApp.nc
#include "utime.h"
module MyAppP{
}implementation{

}

Compilation Error:
mkdir -p build/telosb
gcc -g -c utime.c
compiling SSIC to a telosb binary
ncc -o build/telosb/main.exe -Os -O -mdisable-hwmul -Wall -Wshadow 
-DDEF_TOS_AM_GROUP=0x7d -Wnesc-all -target=telosb 
-fnesc-cfile=build/telosb/app.c -board= -DIDENT_PROGRAM_NAME=\"SSIC\" 
-DIDENT_USER_ID=\"gonga\" -DIDENT_HOSTNAME=\"gongabgTOS\" 
-DIDENT_USER_HASH=0x56b2c591L -DIDENT_UNIX_TIME=0x4816edcaL 
-DIDENT_UID_HASH=0x00076286L  SSIC.nc -lm utime.o
msp430-ld: utime.o: Relocations in generic ELF (EM: 3)
msp430-ld: utime.o: Relocations in generic ELF (EM: 3)
msp430-ld: utime.o: Relocations in generic ELF (EM: 3)
msp430-ld: utime.o: Relocations in generic ELF (EM: 3)
msp430-ld: utime.o: Relocations in generic ELF (EM: 3)
msp430-ld: utime.o: Relocations in generic ELF (EM: 3)
utime.o: could not read symbols: File in wrong format
make: *** [exe0] Error 1






_
News, entertainment and everything you care about at Live.com. Get it now!
http://www.live.com/getstarted.aspx___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] Q about CTP and AMSenderC

2008-04-29 Thread gaurav mathur


Hi,
I have programmed a node such that it broad casts its node_id in every 2 
seconds. This node uses interface AMSenderC to send the packets.
I programmed other nodes to  make a collection tree. These nodes uses  Snoop 
interface of CollectionC .
My problem is the nodes programmed with snoop interface of CollectionC does not 
over hear the packets sent by the node programmed with AMSenderC.

I need that nodes programmed with snoop interface of CollectionC can over hear 
the packets sent by the node programmed with AMSenderC.
Please help me.

regards,
Gaurav Mathur 


  

Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] C function in a nesC Application

2008-04-29 Thread Otto Visser
You're compiling the utime with your hosts gcc (aka x86-64 or i386
probably) and then trying to link that into a msp binary. You should
compile it with msp460-gcc.

Hope that helps,

Otto.

On Tue, 2008-04-29 at 11:52 +0200, antonio gonga wrote:
> Dear all, 
> I'm having so many problems to embed a C code in a nesC Application.
> File: utime.h
> unsigned long getTime();
> --
> File: utime.c
> #include
> #include
> 
> struct timeval tm;
> unsigned long getTime(){
>   gettimeofday(&tm, NULL);
>   return tm.tv_usec;
> }
> 
> Makefile:
> COMPONENT = MyAPP
> BUILD_EXTRA_DEPS = utime.o
> LDFLAGS = utime.o   //I'm not sure about this flag,
> 
> utime.o: utime.c utime.h
> gcc -g -c utime.c
> -
> MyApp.nc
> #include "utime.h"
> module MyAppP{
> }implementation{
> 
> }
> 
> Compilation Error:
> mkdir -p build/telosb
> gcc -g -c utime.c
> compiling SSIC to a telosb binary
> ncc -o build/telosb/main.exe -Os -O -mdisable-hwmul -Wall -Wshadow
> -DDEF_TOS_AM_GROUP=0x7d -Wnesc-all -target=telosb
> -fnesc-cfile=build/telosb/app.c -board= -DIDENT_PROGRAM_NAME=\"SSIC\"
> -DIDENT_USER_ID=\"gonga\" -DIDENT_HOSTNAME=\"gongabgTOS\"
> -DIDENT_USER_HASH=0x56b2c591L -DIDENT_UNIX_TIME=0x4816edcaL
> -DIDENT_UID_HASH=0x00076286L  SSIC.nc -lm utime.o
> msp430-ld: utime.o: Relocations in generic ELF (EM: 3)
> msp430-ld: utime.o: Relocations in generic ELF (EM: 3)
> msp430-ld: utime.o: Relocations in generic ELF (EM: 3)
> msp430-ld: utime.o: Relocations in generic ELF (EM: 3)
> msp430-ld: utime.o: Relocations in generic ELF (EM: 3)
> msp430-ld: utime.o: Relocations in generic ELF (EM: 3)
> utime.o: could not read symbols: File in wrong format
> make: *** [exe0] Error 1
> 
> 
> 
> 
> 
> 
> 
> __
> Get news, entertainment and everything you care about at Live.com.
> Check it out!
> ___
> 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] Q about CTP and AMSenderC

2008-04-29 Thread gaurav mathur


Hi,
I have programmed a node such that it broad casts its node_id in every 2 
seconds. This node uses interface AMSenderC to send the packets.
I programmed other nodes to  make a collection tree. These nodes uses  Snoop 
interface of CollectionC .
My problem is the nodes programmed with snoop interface of CollectionC does not 
over hear the packets sent by the node programmed with AMSenderC.

I need that nodes programmed with snoop interface of CollectionC can over hear 
the packets sent by the node programmed with AMSenderC.
Please help me.

regards,
Gaurav Mathur 



Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile. Try it now.


  

Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] Problem with MsgReader in lesson 4 (TinyOS 2.0)

2008-04-29 Thread rolfibamberg
The problem is that the tutorial doesn't include a
CLEAN_EXTRA definiton for the Makefile at
BlinkToRadio.  After correcting the constant
definition to AM_BLINKTORADIOMSG (See the tutorial,
Ex. 4), you have to recompile the application.
Although you might use make clean, the
BlinkToRadio.java file will not be generated, because
it has not been deleted, and it also won't output a
warning, becuse it didn't even try to generate it.
You have to add: CLEAN_EXTRA = *.class
BlinkToRadioMsg.java to your Makefile and it will
work, after you clean up the build and build it again.

Best regards,
Rodolfo


  

Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help


Re: [Tinyos-help] Q about CTP and AMSenderC

2008-04-29 Thread Omprakash Gnawali
On Tue, Apr 29, 2008 at 3:38 AM, gaurav mathur <[EMAIL PROTECTED]> wrote:

...
> I have programmed a node such that it broad casts its node_id in every 2
> seconds. This node uses interface AMSenderC to send the packets.
> I programmed other nodes to  make a collection tree. These nodes uses  Snoop
> interface of CollectionC .
> My problem is the nodes programmed with snoop interface of CollectionC does
> not over hear the packets sent by the node programmed with AMSenderC.
>

CollectionC.Snoop is intended to snoop the CTP data packets. You
probably want to use a different AM ID for your broadcast packet, use
AMSnooperC to snoop those packets, and use CollectionSender to send
those snooped packets using Collection.

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


Re: [Tinyos-help] C function in a nesC Application

2008-04-29 Thread Janos Sallai
Antonio:

 

There are a couple of issues here. First, you're compiling utime.c for
the intel platform and want to link the binary into an application for
the telos mote. You need to compile the C file with the msp430-gcc with
the -mmcu=msp430x1611 parameter.

 

The second problem is that you're trying to use gettimeofday, which is
POSIX specific. You will not be able to compile such code for the telos,
because msp430-libc doesn't support it. To get the local time in
milliseconds, use the LocalTime interface provided by HILTimerMilliC.

 

Janos

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
antonio gonga
Sent: Tuesday, April 29, 2008 4:53 AM
To: TINYOS
Subject: [Tinyos-help] C function in a nesC Application

 

Dear all, 
I'm having so many problems to embed a C code in a nesC Application.
File: utime.h
unsigned long getTime();
--
File: utime.c
#include
#include

struct timeval tm;
unsigned long getTime(){
  gettimeofday(&tm, NULL);
  return tm.tv_usec;
}

Makefile:
COMPONENT = MyAPP
BUILD_EXTRA_DEPS = utime.o
LDFLAGS = utime.o   //I'm not sure about this flag,

utime.o: utime.c utime.h
gcc -g -c utime.c
-
MyApp.nc
#include "utime.h"
module MyAppP{
}implementation{

}

Compilation Error:
mkdir -p build/telosb
gcc -g -c utime.c
compiling SSIC to a telosb binary
ncc -o build/telosb/main.exe -Os -O -mdisable-hwmul -Wall -Wshadow
-DDEF_TOS_AM_GROUP=0x7d -Wnesc-all -target=telosb
-fnesc-cfile=build/telosb/app.c -board= -DIDENT_PROGRAM_NAME=\"SSIC\"
-DIDENT_USER_ID=\"gonga\" -DIDENT_HOSTNAME=\"gongabgTOS\"
-DIDENT_USER_HASH=0x56b2c591L -DIDENT_UNIX_TIME=0x4816edcaL
-DIDENT_UID_HASH=0x00076286L  SSIC.nc -lm utime.o
msp430-ld: utime.o: Relocations in generic ELF (EM: 3)
msp430-ld: utime.o: Relocations in generic ELF (EM: 3)
msp430-ld: utime.o: Relocations in generic ELF (EM: 3)
msp430-ld: utime.o: Relocations in generic ELF (EM: 3)
msp430-ld: utime.o: Relocations in generic ELF (EM: 3)
msp430-ld: utime.o: Relocations in generic ELF (EM: 3)
utime.o: could not read symbols: File in wrong format
make: *** [exe0] Error 1









Get news, entertainment and everything you care about at Live.com. Check
it out!  

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

[Tinyos-help] Hi set a threshold from the basestation

2008-04-29 Thread 贾鹏
Hi, there

Our group is considering to set a little system that we can set a certain
photo threshold from the basestation (the keyboard of the computer) to a
sensor node,  and when the light is below that threshold, it will transmit
the packet to the basestation.   I think the key problem is (set the
threshold part), how to set the threshold from keyboard and transfer it to
the basestation, the basestation packets it and transmits it to a sensor
node, then the sensor node changes to the new threshold.

someone have an idea about it?


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

Re: [Tinyos-help] Error while compiling

2008-04-29 Thread Brandon Arnold
Hey, those are hard to track down sometimes.  Try changing the configuration
name "MyAPP" to "MyApp".  The point is, it needs to coincide with that in
the module name and in the makefiles and so on.  I'd like to say this is
generally a configuration/module/makefile project naming issue.

-Brandon

On Tue, Apr 29, 2008 at 12:42 AM, Dhivya G <[EMAIL PROTECTED]> wrote:

> Hi,
> I am using MTS400 sensor board,MIB520 programming board and Micaz
> mote. I am trying to get light sensor data from MTS400 sensor board. My code
> is as follows:
>
> #include "appFeatures.h"
> includes sensorboardApp;
> configuration MyAPP{
> }
> implementation {
> components Main,MyAppM,GenericComm as Comm,TimerC,LedsC,TaosPhoto;
> Main.StdControl->MyAppM.StdControl;
> Main.StdControl->TimerC.StdControl;
> Main.StdControl->Comm.Control;
> MyAppM.SendMsg->Comm.SendMsg[AM_XSXMSG];
> MyAppM.Timer->TimerC.Timer[unique("Timer")];
> MyAppM.Leds->LedsC.Leds;
> MyAppM.TaosControl->TaosPhoto.SplitControl;
> MyAppM.TaosCh0->TaosPhoto.ADC[0];
> MyAppM.TaosCh1->TaosPhoto.ADC[1];
> }
>
> #include "appFeatures.h"
>
> module MyAppM {
> provides {
> interface StdControl;
> }
> uses {
> interface SendMsg;
> interface Timer;
> interface Leds;
> interface SplitControl as TaosControl;
> interface ADC as TaosCh0;
> interface ADC as TaosCh1;
> }
> }
> implementation {
> TOS_Msg msg_buffer;
> bool Sending_packet=FALSE;
> XDataMsg *pack;
> command result_t StdControl.init() {
> call Leds.init();
> call TaosControl.init();
> atomic {
> pack=(XDataMsg *)&(msg_buffer.data);
> pack->xSensorHeader.board_id=SENSOR_BOARD_ID;
> pack->xSensorHeader.packet_id=2;
> pack->xSensorHeader.node_id=TOS_LOCAL_ADDRESS;
> }
> return SUCCESS;
> }
> command result_t StdControl.start() {
> call Timer.start(TIMER_REPEAT,1000);
> return SUCCESS;
> }
> command result_t StdControl.stop(){
> call Timer.stop();
> return SUCCESS;
> }
> event result_t Timer.fired(){
> call Leds.redToggle();
> call TaosControl.start();
> return SUCCESS;
> }
> void task SendData(){
> if(Sending_packet) return;
> atomic Sending_packet=TRUE;
> if(call
> SendMsg.send(TOS_UART_ADDR,sizeof(XDataMsg),&msg_buffer)!=SUCCESS)
> Sending_packet=FALSE;
> return;
> }
> async event result_t TaosCh1.dataReady(uint16_t data){
> pack->xData.data1.taoch1=data;
> call TaosControl.stop();
> post SendData();
> call Leds.yellowToggle();
> return SUCCESS;
> }
> async event result_t TaosCh0.dataReady(uint16_t data){
> pack->xData.data1.taoch0=data;
> atomic pack->xData.data1.vref = 417;
> return call TaosCh1.getData();
> }
>
> event result_t TaosControl.startDone(){
> return call TaosCh0.getData();
> }
> event result_t TaosControl.initDone(){
> return SUCCESS;
> }
> event result_t TaosControl.stopDone(){
> return SUCCESS;
> }
> event result_t SendMsg.sendDone(TOS_MsgPtr msg, result_t success){
> call Leds.greenToggle();
> atomic Sending_packet=FALSE;
> return SUCCESS;
> }
> }
>   While compiling the above code I am getting the following error:
> assertion "0" failed: file "nesc-semantics.c", line 145
> make: *** [exe0] Error 1
>
> Can u please help me to solve this error. I dont knw where I have gone
> wrong.
>
>
> --
> Regards,
> G.Dhivya
___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] Hi set a threshold from the basestation

2008-04-29 Thread Michael Schippling
Create a message type that contains the threshold value
and send it from the PC to all the re-Motes. Look at
examples of sending messages like SimpleCmd, or in my
code: http://www.etantdonnes.com/Motes/robocode.tar.gz
MS


贾鹏 wrote:
> Hi, there
> 
> Our group is considering to set a little system that we can set a 
> certain photo threshold from the basestation (the keyboard of the 
> computer) to a sensor node,  and when the light is below that threshold, 
> it will transmit the packet to the basestation.   I think the key 
> problem is (set the threshold part), how to set the threshold from 
> keyboard and transfer it to the basestation, the basestation packets it 
> and transmits it to a sensor node, then the sensor node changes to the 
> new threshold.
> 
> someone have an idea about it?
> 
> 
> sincerely  yours
> Peng Jia
> 
> 
> 
> 
> ___
> Tinyos-help mailing list
> Tinyos-help@millennium.berkeley.edu
> https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

-- 
Platform: WinXP/Cygwin
TinyOS version: 1.x, Boomerang
Programmer: MIB510
Device(s): Mica2, MicaZ, Tmote
Sensor board: homebrew

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

Re: [Tinyos-help] Ubuntu package installation problem

2008-04-29 Thread Matthias Gauger
Hello Kevin,

I tried to install the updated packages this morning using the Ubuntu 
update manager. However, it failed to install "avr-binutils-tinyos" - It 
complains that it is supposed to overwrite "/usr/lib/libiberty.a" which 
belongs to the package binutils-dev.

Since performing the partial update I am also not able to compile any 
TinyOS programs for the TelosB platform anymore. I get the following 
error message:

msp430-gcc: 
/home/xubuntos/sources/nesc-1.2.9/debian/usr/lib/ncc/tdspecs: No such 
file or directory


Any idea what is happening here?


Thanks,


Matthias


Kevin Klues schrieb:
> I spent some time playing with the repo today (apparently I'm the
> maintainer now :) ) and pushed the newer versions of avr-gcc in there
> as well as did some general cleanup.  Let me know if this fixes your
> problems.
> 
> Kevin
> 
___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help


Re: [Tinyos-help] Ubuntu package installation problem

2008-04-29 Thread Kevin Klues
I've reverted the entire repository back to the old one until i get
these bugs figured out.

if you messed up your system in the meantime, you need to do

sudo apt-get update
sudo dpkg --remove --ignore-depends=tinyos-msp430,tinyos-avr,tinyos nesc
sudo apt-get install nesc

Kevin

On Tue, Apr 29, 2008 at 12:46 PM, Matthias Gauger <[EMAIL PROTECTED]> wrote:
> Hello Kevin,
>
>  I tried to install the updated packages this morning using the Ubuntu
> update manager. However, it failed to install "avr-binutils-tinyos" - It
> complains that it is supposed to overwrite "/usr/lib/libiberty.a" which
> belongs to the package binutils-dev.
>
>  Since performing the partial update I am also not able to compile any
> TinyOS programs for the TelosB platform anymore. I get the following error
> message:
>
>  msp430-gcc: /home/xubuntos/sources/nesc-1.2.9/debian/usr/lib/ncc/tdspecs:
> No such file or directory
>
>
>  Any idea what is happening here?
>
>
>  Thanks,
>
>
>  Matthias
>
>
>  Kevin Klues schrieb:
>
>
>
> > I spent some time playing with the repo today (apparently I'm the
> > maintainer now :) ) and pushed the newer versions of avr-gcc in there
> > as well as did some general cleanup.  Let me know if this fixes your
> > problems.
> >
> > Kevin
> >
> >
>



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


[Tinyos-help] Strange msp430-gcc warning

2008-04-29 Thread Dimas Abreu Dutra
Hello all,

I'm getting a very strange warning from the msp430-gcc when I compile an app
I made. I use the default make tmote and what I get the folowing output:

/tmp/cc1ZKIEK.o: In function `EasyDebugP$sendMessage$runTask':
app.c:(.text+0x390e): warning: internal error: unsupported relocation error
app.c:(.text+0x3912): warning: internal error: unsupported relocation error

Besides that, the app is compiled, but it does not behave as intended. Using
comment-oriented debugging, I found out that the code originating the
warning is

DebugMsg msg_contents;
DebugMsg *payload;
msg_contents = call Queue.dequeue();
payload = call EasyAMSend.getPayload(&msg);
**payload = msg_contents;* //Commenting this out removes the warning

where the type DebugMsg is:

 typedef nx_struct {
  nx_uint16_t id;
  nx_uint16_t value;
}DebugMsg;

Should this warning occur? I'm writing this e-mail because internal error
sounds like it could be something wrong with the compiler.

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

Re: [Tinyos-help] Strange msp430-gcc warning

2008-04-29 Thread renjie huang
C language does not support structure evaluation. You need to do copy
operation for each member in the structure one by one or using :
memcpy(payload, &msg_contents, sizeof(DebugMsg))


On 4/29/08, Dimas Abreu Dutra <[EMAIL PROTECTED]> wrote:
>
> Hello all,
>
> I'm getting a very strange warning from the msp430-gcc when I compile an
> app I made. I use the default make tmote and what I get the folowing output:
>
> /tmp/cc1ZKIEK.o: In function `EasyDebugP$sendMessage$runTask':
> app.c:(.text+0x390e): warning: internal error: unsupported relocation
> error
> app.c:(.text+0x3912): warning: internal error: unsupported relocation
> error
>
>
> Besides that, the app is compiled, but it does not behave as intended.
> Using comment-oriented debugging, I found out that the code originating the
> warning is
>
> DebugMsg msg_contents;
> DebugMsg *payload;
> msg_contents = call Queue.dequeue();
> payload = call EasyAMSend.getPayload(&msg);
>
> **payload = msg_contents;* //Commenting this out removes the warning
>
>
> where the type DebugMsg is:
>
>  typedef nx_struct {
>   nx_uint16_t id;
>   nx_uint16_t value;
> }DebugMsg;
>
>
> Should this warning occur? I'm writing this e-mail because internal error
> sounds like it could be something wrong with the compiler.
>
> ~Dimas~
>
> ___
> Tinyos-help mailing list
> Tinyos-help@millennium.berkeley.edu
> https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help
>



-- 
Renjie Huang
Sensorweb Research Laboratory
http://sensorweb.vancouver.wsu.edu/
Washington State University
___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] RssiDemo help

2008-04-29 Thread Varun Jain
Hi,

I copied all the files from the CVS Repository for RssiDemo application
as my TinyOS-2.0.2 installation did not had the RssiDemo aaplication
since I think this application is a recent addition. So I copied all the
files into a folder and tried to build. I can see individual makefiles
for RssiBase\, SendingMote\ and InterceptBase\ . So, how can we build
the complete RssiDemo application. If I go individually to each
application, say RssiBase\ and do a "make micaz". It says that there is
a "conflicting type for RadioIntercept.forward" error. I went on to see
the interface "Intercept", as it already defines the "event forward"
which is why it is giving the error. And RssiBase again defines this
event, can you tell how to get around the problem. 

 

Thanks...

 

 

Varun Jain

Spiderbox Pty Ltd.

Brisbane, Australia

 

 

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

[Tinyos-help] Low power listening in TinyOS-1.x

2008-04-29 Thread 俞龙
Hello, everybody,
Are there some protocols in TinyOS-1.x to support the low power listening 
except the SetListenMode which is provided by CC1000RadioIntM.nc?
I know there are CC1000LPL in TinyOS-2.x which works well, and I try to modify 
it but I fail.
Because the platform used is not supported by TinyOS-2.x, I can only use the 
old version.

Regards!


--
Yu long

Beijing University of Posts and Telecommunications 

Add: No.10 XiTuCheng Road 
Haidian District,Beijing 100876, P.R. China
 
Motto: What you never thought possible. ___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] [Tinyos-devel] AM ID guidelines for net2 protocols and other applications

2008-04-29 Thread Matt Welsh
This seems like an unnecessarily large swath of the AM address space  
for one small working group. It would be better to justify this in  
terms of your actual needs, rather than projected. How many AM IDs do  
the net2 protocols currently need and can we estimate the growth in  
the protocol space over the next few years based on past trends?


On Apr 25, 2008, at 5:14 PM, Omprakash Gnawali wrote:

> The TinyOS Networking Protocol Working Group (net2) would like to
> reserve AM ids whose first bit is 1 (128-255) to be used by
> Collection/Dissemination/TYMO and other net2 protocols. We recommend
> that the application developers use AM ids 0..127.
>
> If anyone has any problem with this proposal, please let me know by
> next Friday (May 2nd, 2008).
>
> - om_p
> ___
> Tinyos-devel mailing list
> [EMAIL PROTECTED]
> https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-devel

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


[Tinyos-help] mts400 sensorboard in TinyOS2.x

2008-04-29 Thread Xiaojun Zhu
Hi everyone.
   
  Can any one tell me how I can use mts400 sensorboard in TinyOS2.x? I'm using 
iris platform.
   
  Thanks,
 Xiaojun Zhu


  

Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] [Tinyos-devel] AM ID guidelines for net2 protocols and other applications

2008-04-29 Thread Philip Levis

On Apr 29, 2008, at 7:41 PM, Matt Welsh wrote:
> This seems like an unnecessarily large swath of the AM address space
> for one small working group. It would be better to justify this in
> terms of your actual needs, rather than projected. How many AM IDs do
> the net2 protocols currently need and can we estimate the growth in
> the protocol space over the next few years based on past trends?

The idea was that since net2 is technically responsible for protocols  
sitting on top of AM, it's the WG responsible for preventing confusion  
and collisions in the AM identifier space. So really, the way to see  
this is "protocols in the TinyOS tree use this range."

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


[Tinyos-help] (no subject)

2008-04-29 Thread Lakshmi Pradeep
Hi ,
 I am using Moteworks 2.0 platform for nesC programming. Can we use Xserve 
to view data from motes without using MULTIHOPROUTER  component ? Please tell 
me in which format Xserve receives data?
Does it receives data sent using SendMsg interface in GenericComm component? Is 
there any other method to view sensed data without using Moteview)?
Thanks 
Lakshmi



  

Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ___
Tinyos-help mailing list
Tinyos-help@millennium.berkeley.edu
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help