Other Parts Discussed in Thread: CC1310
Tool/software: TI-RTOS
I'm using CCS for MacOS, importing the example project through TIREX. rfPacketErrorRate_CC1310_LAUNCHXL_nortos_ccs builds cleanly out of the box but rfPacketErrorRate_CC1310_LAUNCHXL_tirtos_ccs fails with many errors in rx.c and tx.c on statements like
RF_pCmdPropRadioDivSetup_fsk->txPower = RF_TxPowerTable_findValue((RF_TxPowerTable_Entry *)PROP_RF_txPowerTableREEU, 25).rawValue;
Each of those statements generates 3 errors:
#156 expression must have struct or union type #18 expected a ")" #29 expected an expression
and the following warning:
#225-D function "RF_TxPowerTable_findValue" declared implicitly
The indexer can't seem to find the declarations involved, and the include browser can't seem to find many header files -- perhaps because the #include statements require macro expansion?
Any help appreciated!