Other Parts Discussed in Thread: MSP430F6747A, MSP430F5438
I'm trying to build a version of TI RTOS and its driverlib for the MSP430F6747A. The build works fine for my other devices (5529, 5438A and 5438) but when it gets to the '6747A it fails with an error about a missing symbol: ADC10PDIV_3. (A snippet of the build with the failure is below.) If I shove the value for the #define into the source file (not a desirable) solution, the build completes successfully and the library gets built. This leads me to believe there is a missing include file but the source looks similar to other files.
Start the make process:
C:\ti\tirtos_msp43x_2_16_01_14>..\xdctools_3_32_00_06_core\gmake.exe -f tirtos.mak build-ccs-msp430-driverlib
...delete some of the repetition :-)
==> building archive 'MSP430F5xx_6xx/ccs/MSP430F5438.lib'
"removing the object files"
rmdir /s /q MSP430F5xx_6xx\ccs\MSP430F5xx_6xx
gmake[3]: Leaving directory `c:/ti/tirtos_msp43x_2_16_01_14/products/msp430_driverlib_2_21_00_08a/driverlib'
"Building for MSP430F6747A for the MSP430F5xx_6xx Family"
gmake[3]: Entering directory `c:/ti/tirtos_msp43x_2_16_01_14/products/msp430_driverlib_2_21_00_08a/driverlib'
"making library directory"
CC MSP430F5xx_6xx/adc10_a.c
"MSP430F5xx_6xx/adc10_a.c", line 70: error: identifier "ADC10PDIV_3" is undefined
1 error detected in the compilation of "MSP430F5xx_6xx/adc10_a.c".
>> Compilation failure
gmake[3]: *** [MSP430F5xx_6xx/ccs/MSP430F5xx_6xx/adc10_a.obj] Error 1
gmake[3]: Leaving directory `c:/ti/tirtos_msp43x_2_16_01_14/products/msp430_driverlib_2_21_00_08a/driverlib'
gmake[2]: *** [MSP430F6747A] Error 2
gmake[2]: Leaving directory `c:/ti/tirtos_msp43x_2_16_01_14/products/msp430_driverlib_2_21_00_08a/driverlib'
gmake[1]: *** [all] Error 2
gmake[1]: Leaving directory `c:/ti/tirtos_msp43x_2_16_01_14/products/msp430_driverlib_2_21_00_08a'
gmake: *** [build-ccs-msp430-driverlib] Error 2
Any thoughts for a better solution?