Hello,

I'm attempting to build the mspgcc toolchain so that I can deploy
TinyOS applications to the MSP430F5438 microcontroller.  I have
applied the patch to tc-msp430.h to enable use `$' as a logical line
separator and the mspgcc build process executes without problem.  I
can then use this toolchain to build the Blink app for the msp-based
platforms.  I've also loaded the Blink app onto a telosb mote and it
works.  However, when I attempt to build Blink for my own platform,
called symsat, I get the errors indicated below.  Note that I have
tried regenerating the chips msp430 file  under chips called
msp430regtypes.h based on the mspgcc headers, but it does not resolve
the problem.  Any help would be greatly appreciated.

Thanks,
Cameron Ross.

------------------------------------------------ START SNIP
------------------------------------------------

make symsat
mkdir -p build/symsat
    compiling BlinkAppC to a symsat binary
ncc -o build/symsat/main.exe  -Os -Wall -Wshadow -Wnesc-all
-target=symsat -fnesc-cfile=build/symsat/app.c -board=
-DDEFINED_TOS_AM_GROUP=0x22 -DIDENT_APPNAME=\"BlinkAppC\"
-DIDENT_USERNAME=\"cross\" -DIDENT_HOSTNAME=\"localhost.local\"
-DIDENT_USERHASH=0xd54ef487L -DIDENT_TIMESTAMP=0x49500857L
-DIDENT_UIDHASH=0x7e6a8c51L  BlinkAppC.nc -lm
In file included from
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/system/TinySchedulerC.nc:41:
In component `McuSleepC':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/McuSleepC.nc:
In function `getPowerState':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/McuSleepC.nc:69:
`TACCTL0' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/McuSleepC.nc:69:
(Each undeclared identifier is reported only once
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/McuSleepC.nc:69:
for each function it appears in.)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/McuSleepC.nc:69:
`CCIE' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/McuSleepC.nc:70:
`TACCTL1' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/McuSleepC.nc:71:
`TACCTL2' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/McuSleepC.nc:72:
`TACTL' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/McuSleepC.nc:72:
`TASSEL_3' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/McuSleepC.nc:72:
`TASSEL_2' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/McuSleepC.nc:73:
`ME1' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/McuSleepC.nc:73:
`UTXE0' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/McuSleepC.nc:73:
`URXE0' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/McuSleepC.nc:73:
`U0TCTL' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/McuSleepC.nc:73:
`SSEL1' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/McuSleepC.nc:74:
`ME2' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/McuSleepC.nc:74:
`UTXE1' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/McuSleepC.nc:74:
`URXE1' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/McuSleepC.nc:74:
`U1TCTL' undeclared (first use in this function)
In file included from
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockC.nc:33,
                 from
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/platforms/symsat/PlatformC.nc:8,
                 from
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/system/MainC.nc:50,
                 from BlinkAppC.nc:45:
In component `Msp430ClockP':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:
In function `Msp430ClockInit.defaultSetupDcoCalibrate':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:57:
`TASSEL1' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:57:
`MC1' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:58:
`TBSSEL0' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:59:
`BCSCTL1' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:59:
`XT2OFF' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:59:
`RSEL2' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:60:
`BCSCTL2' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:61:
`TBCCTL0' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:61:
`CM0' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:
In function `Msp430ClockInit.defaultInitClocks':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:71:
`BCSCTL1' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:71:
`XT2OFF' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:71:
`RSEL2' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:71:
`RSEL1' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:71:
`RSEL0' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:79:
`BCSCTL2' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:79:
`DIVS1' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:
In function `Msp430ClockInit.defaultInitTimerA':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:87:
`TAR' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:97:
`TASSEL1' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:97:
`TAIE' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:
In function `Msp430ClockInit.defaultInitTimerB':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:102:
`TBR' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:112:
`TBSSEL0' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:112:
`TBIE' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:
In function `startTimerA':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:139:
`MC1' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:139:
`MC0' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:
In function `stopTimerA':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:145:
`MC1' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:145:
`MC0' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:
In function `startTimerB':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:151:
`MC1' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:151:
`MC0' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:
In function `stopTimerB':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:157:
`MC1' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:157:
`MC0' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:
In function `set_dco_calib':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:162:
`BCSCTL1' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:163:
`DCOCTL' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:
In function `test_calib_busywait_delta':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:176:
`TBCCR0' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:176:
`TBR' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:177:
`TBCCTL0' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:177:
`CCIFG' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:180:
`TAR' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:
In function `Init.init':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:217:
`TACLR' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockP.nc:219:
`TBCLR' undeclared (first use in this function)
In file included from
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockC.nc:33,
                 from
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/platforms/symsat/PlatformC.nc:8,
                 from
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/system/MainC.nc:50,
                 from BlinkAppC.nc:45:
In component `Msp430TimerC':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:
At top level:
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:64:
`TAIV_' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:64:
`TAR_' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:64:
`TACTL_' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:64:
`TAIFG' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:64:
`TACLR' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:64:
`TAIE' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:65:
`TASSEL0' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:65:
`TASSEL1' undeclared here (not in a function)
In file included from
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:65,
                 from
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockC.nc:33,
                 from
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/platforms/symsat/PlatformC.nc:8,
                 from
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/system/MainC.nc:50,
                 from BlinkAppC.nc:45:
In component `Msp430TimerP':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerP.nc:
In function `Timer.setMode':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerP.nc:82:
`MC1' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerP.nc:82:
`MC0' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerP.nc:
In function `Timer.getMode':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerP.nc:87:
`MC1' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerP.nc:87:
`MC0' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerP.nc:
In function `Timer.setInputDivider':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerP.nc:112:
`ID0' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerP.nc:112:
`ID1' undeclared (first use in this function)
In component `Msp430TimerC':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:
At top level:
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:66:
`TBIV_' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:66:
`TBR_' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:66:
`TBCTL_' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:66:
`TBIFG' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:66:
`TBCLR' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:66:
`TBIE' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:67:
`TBSSEL0' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:67:
`TBSSEL1' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:68:
`TACCTL0_' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:68:
`TACCR0_' undeclared here (not in a function)
In file included from
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:68,
                 from
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430ClockC.nc:33,
                 from
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/platforms/symsat/PlatformC.nc:8,
                 from
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/system/MainC.nc:50,
                 from BlinkAppC.nc:45:
In component `Msp430TimerCapComP':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerCapComP.nc:
In function `Control.isInterruptPending':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerCapComP.nc:81:
`CCIFG' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerCapComP.nc:
In function `Control.clearPendingInterrupt':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerCapComP.nc:86:
`CCIFG' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerCapComP.nc:
In function `Capture.setSynchronous':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerCapComP.nc:114:
`SCS' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerCapComP.nc:
In function `Control.enableEvents':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerCapComP.nc:121:
`CCIE' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerCapComP.nc:
In function `Control.disableEvents':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerCapComP.nc:126:
`CCIE' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerCapComP.nc:
In function `Control.areEventsEnabled':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerCapComP.nc:131:
`CCIE' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerCapComP.nc:
In function `Capture.isOverflowPending':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerCapComP.nc:161:
`COV' undeclared (first use in this function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerCapComP.nc:
In function `Capture.clearOverflow':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerCapComP.nc:166:
`COV' undeclared (first use in this function)
In component `Msp430TimerC':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:
At top level:
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:69:
`TACCTL1_' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:69:
`TACCR1_' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:70:
`TACCTL2_' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:70:
`TACCR2_' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:71:
`TBCCTL0_' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:71:
`TBCCR0_' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:72:
`TBCCTL1_' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:72:
`TBCCR1_' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:73:
`TBCCTL2_' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:73:
`TBCCR2_' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:74:
`TBCCTL3_' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:74:
`TBCCR3_' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:75:
`TBCCTL4_' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:75:
`TBCCR4_' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:76:
`TBCCTL5_' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:76:
`TBCCR5_' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:77:
`TBCCTL6_' undeclared here (not in a function)
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/chips/msp430/timer/Msp430TimerC.nc:77:
`TBCCR6_' undeclared here (not in a function)
In file included from BlinkAppC.nc:45:
In component `LedsC':
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/system/LedsC.nc:38:
component PlatformLedsC not found
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/system/LedsC.nc:42:
cannot find `Init'
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/system/LedsC.nc:43:
cannot find `Led0'
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/system/LedsC.nc:44:
cannot find `Led1'
/home/cross/documents/dev/tools/tinyos/tinyos-2.x/tos/system/LedsC.nc:45:
cannot find `Led2'
make: *** [exe0] Error 1

------------------------------------------------ END SNIP
------------------------------------------------

-- 
Cameron Ross, M.Sc.
Director of Technology
Symboticware Incorporated
www.symboticware.com
(705) 929-1492
_______________________________________________
Tinyos-help mailing list
[email protected]
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Reply via email to