[Tinyos-help] FW: msp430 f2xxx version and TI compiler

2008-07-10 Thread Alexandre Buist
Hi, I intend to use the MSP430f2xxx serie on my platform and I would like to know if it is possible to use the TI compiler in TinyOS instead of mspgcc. (The latest releases of mspgcc do not support the extended flash memory allocation (above 0x)

[Tinyos-help] FW: updating mspgcc

2008-07-10 Thread Alexandre Buist
Hi, I installed the latest version of the mspgcc on my PC and now I can't build any application in cygwin. $ make telosb mkdir -p build/telosb compiling TestAppC to a telosb binary ncc -o build/telosb/main.exe -Os -O -mdisable-hwmul -fnesc-separator=__ -Wall -Wshadow -Wnesc-all

[Tinyos-help] updating mspgcc

2008-07-09 Thread Alexandre Buist
Hi, I installed the latest version of the mspgcc on my PC and now I can't build any application in cygwin. $ make telosb mkdir -p build/telosb compiling TestAppC to a telosb binary ncc -o build/telosb/main.exe -Os -O -mdisable-hwmul -fnesc-separator=__ -Wall -Wshadow -Wnesc-all

[Tinyos-help] msp430 f2xxx version and TI compiler

2008-07-08 Thread Alexandre Buist
Hi, I intend to use the MSP430f2xxx serie on my platform and I would like to know if it is possible to use the TI compiler in TinyOS instead of mspgcc. (The latest releases of mspgcc do not support the extended flash memory allocation (above 0x)

[Tinyos-help] quick question decimal constant is so large that it is unsigned

2008-06-06 Thread Alexandre Buist
Hi Just wondering, how can I get rid of this useless warning /opt/tinyos-2.x/tos/chips/Wn100/Wn100P.nc: At top level: /opt/tinyos-2.x/tos/chips/Wn100/Wn100P.nc:46: warning: decimal constant is so large that it is unsigned Here is the code implementation { 46uint16_t

[Tinyos-help] Is anyone working on repairing msp430 Msp430DcoCalibP

2008-05-21 Thread Alexandre Buist
#error Msp430DcoCalibP is broken and will incorrectly adjust TimerA because it does not take into account MCU sleep. Is anyone working on it? Does anyone knows how this should be fixed? Alex ___ Tinyos-help mailing list

Re: [Tinyos-help] Is anyone working on repairing msp430 Msp430DcoCalibP

2008-05-21 Thread Alexandre Buist
_ From: Eric Decker [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 21, 2008 5:45 PM To: Alexandre Buist Cc: tinyos-help@millennium.berkeley.edu Subject: Re: [Tinyos-help] Is anyone working on repairing msp430 Msp430DcoCalibP I don't know if it is on anyone else's stack but is definitely

[Tinyos-help] Timers on MSP430

2008-05-20 Thread Alexandre Buist
Hi all, 1 I made a platform and I am trying out the timers. The Alarm32Khz16C is working good but If I uses interface BusyWaitTMilli, uint16_t as PreciseWait; ( - BusyWaitMilliC ) and I test call Leds.led2On(); //yellow call PreciseWait.wait(5); call

Re: [Tinyos-help] Platform implementation setting TOS_NODE_ID

2008-05-16 Thread Alexandre Buist
to tos-set-symbol :( What should I do? Cheers, Alexandre -Original Message- From: Urs Hunkeler [mailto:[EMAIL PROTECTED] Sent: Friday, May 16, 2008 1:37 AM To: Alexandre Buist Cc: tinyos-help@millennium.berkeley.edu Subject: Re: [Tinyos-help] Platform implementation setting TOS_NODE_ID Hi

[Tinyos-help] Platform implementation setting TOS_NODE_ID

2008-05-14 Thread Alexandre Buist
Hi, When programming a telosb mote with: $ make telosb install,2 It sets the TOS_NODE_ID to 2. I tought it would work right off the bat with my platform but it dosent:-( How can I implement such a feature over my own platform? Thanks in advance. Alexandre Buist

[Tinyos-help] how to reinstall the source tree in cygwin

2008-04-01 Thread Alexandre Buist
Help I removed the tinyos tree completely (there is nothing in otp/) But when I try to reinstall: $ rpm tinyos-2.0.2-2.cygwin.noarch.rpm -ivh Preparing...### [100%] package tinyos-2.0.2-2 is already installed Anyone

[Tinyos-help] replacing the tos tree

2008-03-31 Thread Alexandre Buist
I pasted the msp430 chip folder and files (from a cvs download) over the original msp430 chip in my Tos tree to undo some changes, sadly, nothing compiles anymore. See error below. I tried to reinstall the tree in cygwin using the rpm tinyos-2.0.2-2.cygwin.noarch.rpm

[Tinyos-help] spi.write crashes application

2008-03-28 Thread Alexandre Buist
Hi all, My prog crashes each time I use the spi write command. Here is how it's wired. Is there something missing or wrong? configuration HplWn100C provides interface SpiByte as WnSpi; components new Msp430Spi1C() as Spi; components HplWn100P; HplWn100P.WnSpi - Spi; Spi =

[Tinyos-help] Spi com

2008-03-27 Thread Alexandre Buist
Hi, When try to use the SPI com, the spi.write hangs the system: leds 0 and 1 get ON but leds 2 stays OFF and no more Timer.fired() event come up. event void Timer0.fired() { counter++; call Wn100.cscomset(); call Leds.led0Toggle(); call Wn100.sendoxae();

[Tinyos-help] Getting started with some spi com

2008-03-25 Thread Alexandre Buist
Hi, I am creating my own platform and it contains two MCU ( one with sensors and the other with the wireless protocol stack). I got Blink to work on my sensor platform and I now need to manage the spi communication with the other MCU. I am trying some tests just to get the hand with the

[Tinyos-help] jtag programming msp430 (Blink)

2008-03-12 Thread Alexandre Buist
Hi, I installed cygwin and mspgcc and I am running the Blink tutorial. But the jtag programming fails. $ make eyesIFXv2 mkdir -p build/eyesIFXv2 compiling BlinkAppC to a eyesIFXv2 binary ncc -o build/eyesIFXv2/main.exe -Os -O -mdisable-hwmul -fnesc-separator=__ -Wall -Wshadow

[Tinyos-help] FW: Blink app

2008-03-11 Thread Alexandre Buist
Hi all, I just installed Tinyos on cygwin and now the tos-check-env passes. (Note I installed mspggc instead of tools listed in the install instruction) This is what I get when I try to build Blink with make eyesIFXv2 Alexandre [EMAIL PROTECTED] /opt/tinyos-2.x/apps/Blink

[Tinyos-help] PATH

2008-03-05 Thread Alexandre Buist
Hi, Can someone tell me how and where to correctly set the env vars using cygwin. The path is the default:/opt/tinyos-2.x.. image001.gifattachment: log.bmp___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu