Re: [Tinyos-help] blip/rpl IPBaseStation

2011-02-15 Thread Jay Taneja
Looks like the image is too big. Try installing MSPGCC 4, which should shave off some size from the image: http://mspgcc4.sourceforge.net/ -jay On Tue, Feb 15, 2011 at 2:13 AM, emanuele l ema8...@hotmail.it wrote: Hi, if I type make telosb blip in Ppprouter I obtain these errors: nesc1:

Re: [Tinyos-help] How to disable antenna on telosb mote

2008-12-02 Thread Jay Taneja
You can do this by changing C73 on the TelosB from pins 1 and 2 to pins 1 and 3 (just moving it over, essentially). This connects the SMA socket to the RF pins on the CC2420 (and disconnects the PCB antenna). http://webs.cs.berkeley.edu/tos/hardware/telos/telos-revb-2004-09-27.pdf -jay On Tue,

Re: [Tinyos-help] Motes for outdoor deployment

2008-06-15 Thread Jay Taneja
For recent outdoor deployments, we used some ABS plastic and polycarbonate plastic boxes from Hammong Manufacturing. I'll caution you against boxes that are too large because they didn't seal all that well. The 3.5x3.5 box we used did just fine though. For solar, there are modules from Sparkfun

Re: [Tinyos-help] CC2420 lqi tinyos1.x

2007-09-20 Thread Jay Taneja
http://mail.millennium.berkeley.edu/pipermail/tinyos-help/2007-February/022905.html Please search the list at http://www.tinyos.net/scoop/special/support#mailing-lists before you post a question. -jay On 9/20/07, Leonardo [EMAIL PROTECTED] wrote: Hy guy thank you for help me.. I have

Re: [Tinyos-help] What does the operator stand for

2007-01-24 Thread Jay Taneja
The single ampersand is a bitwise AND. You can look up bitwise operators to find out more. Cheers. -jay On 1/24/07, Muhammad Azhar [EMAIL PROTECTED] wrote: Hi, What does the operator stand for? Eg: uint16_t x; //let x = some value if (x 0x0001) { /* do something */} else if (x 0x0004)

Re: [Tinyos-help] Payload length: 28 or 29?

2006-10-15 Thread Jay Taneja
I know that the Telos/Tmote implementations generally use 28 byte payloads because the 16-bit micro has some difficulties dealing with odd bytelength fields. The Mica family, on the other hand, has 8-bit micros. I am not quite sure of how exactly the MSP430 handles odd bytelength fields - it may

Re: [Tinyos-help] tossim

2006-09-21 Thread Jay Taneja
Here's a couple links: http://www.tinyos.net/tinyos-1.x/doc/nido.pdf http://www.tinyos.net/tinyos-1.x/doc/tutorial/lesson5.html Good luck. -jayOn 9/15/06, hsfhh dfhfdh [EMAIL PROTECTED] wrote: Hi. I need some instructions on how to find and use tossim. I have to make a simulation for

[Tinyos-help] T2 Collection

2006-08-23 Thread Jay Taneja
Hello,I have an application with the following structure:In MyProgAppC.nc:MyProgC.Output - SerialOutC.Output;In SerialOutC.nc:components MySenderP;Output = SerialOutP;MySenderP.AMControl - Serial;MySenderP.Packet - Serial;etc. etc.The idea behind this design is that SerialOutC can be interchanged

Re: [Tinyos-help] Re: Debbuging Interface

2006-08-18 Thread Jay Taneja
Darren,In reference to calling nesC commands from a C function, I recently posted a similar question and got an answer. Here's a link to the thread: http://mail.millennium.berkeley.edu/pipermail/tinyos-help/2006-July/017770.htmlCheers.-jayOn 8/18/06, Philip Levis [EMAIL PROTECTED] wrote:On Aug

[Tinyos-help] T2 Collection Java tools

2006-08-17 Thread Jay Taneja
Hi,I have developed an application for T2 along with simple Java tools that output formatted message contents. For the single-hop case (just broadcasting messages), the Java tools work fine - they identify that messages are of my defined type (called RadioMsg, in this case) and the messageReceived

Re: [Tinyos-help] I NEED REFERENCES

2006-07-21 Thread Jay Taneja
Hello,There are a good number of references in the apps and contrib directories in the tinyos-1.x directory tree. These would be excellent places to begin, since there are both simple (apps) and more complex (contrib) code examples. -jayOn 7/21/06, Boushra MAALA [EMAIL PROTECTED] wrote:

[Tinyos-help] T2 Compilation Problem

2006-07-20 Thread Jay Taneja
Hello,This may be two separate problems, but I am having problems compiling some (but not all) applications for a Telos Rev. B on T2. I am able to successfully compile and install Blink, BlinkToRadio, and BaseStation (among others, I imagine - didn't try any more). However, when I try to compile

Re: [Tinyos-help] T2 Compilation Problem

2006-07-20 Thread Jay Taneja
Levis [EMAIL PROTECTED] wrote: On Jul 20, 2006, at 2:03 PM, Jay Taneja wrote: Hello, This may be two separate problems, but I am having problems compiling some (but not all) applications for a Telos Rev. B on T2. I am able to successfully compile and install Blink, BlinkToRadio, and BaseStation

Re: [Tinyos-help] T2 Compilation Problem

2006-07-20 Thread Jay Taneja
and now it works.Thanks.-jay On 7/20/06, Philip Levis [EMAIL PROTECTED] wrote: On Jul 20, 2006, at 5:24 PM, Jay Taneja wrote: I did have a classpath issue which I resolved (the RadioCountToLeds and RadioSenseToLeds apps now compile correctly), however I am still having difficulty with the JNI. I

[Tinyos-help] #include of header files for C functions

2006-07-11 Thread Jay Taneja
Hello,I am attempting to include a subroutine written in C. I've seen a couple posts on this list about this, but I would like to include the subroutine without writing a nesC wrapper. Currently I am simply following the way C includes files: mysub.h:#ifndef MYSUB_H#define MYSUB_Hint mysub(int

[Tinyos-help] Calling nesC Commands from C functions

2006-07-07 Thread Jay Taneja
Hi, I have a program where some processing is performed in an included C function. Ideally, I would like the C function to call and return the result of a nesC command. The reason I am using C is because the function takes a variable number of arguments, a feature not yet supported in

Re: [Tinyos-help] Calling nesC Commands from C functions

2006-07-07 Thread Jay Taneja
Timer.fired() {m_count++;myfun( 1, m_count );}- CoryOn 7/7/06, Jay Taneja [EMAIL PROTECTED] wrote: Hi, I have a program where some processing is performed in an included C function. Ideally, I would like the C function to call and return the result of a nesC command. The reason I am using C is because