After migration of my CCS project to my new developing machine (project started 4 year ago), installation of updated compiler and TivaWave libraries, the symbol ROM_ADCSequenceConfigure remains undefined.
This happens because the rom.h file does not define the symbol for my processor (I have a TARGET_IS_BLIZZARD_RB1 macro defined, can't remeber who set that variable, the processor code is TM4C123GH6PGE). On old platform the code was compiling. Below extract from my current rom.h file. Why the symbol is not defined anymore for TM4C123?
Sincerely,
#if defined(TARGET_IS_TM4C129_RA0) || \
defined(TARGET_IS_TM4C129_RA1) || \
defined(TARGET_IS_TM4C129_RA2)
#define ROM_ADCSequenceConfigure \
((void (*)(uint32_t ui32Base, \
uint32_t ui32SequenceNum, \
uint32_t ui32Trigger, \
uint32_t ui32Priority))ROM_ADCTABLE[7])
#endif