This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CC2662R-Q1: I keep getting the error message "unresolved symbol NOROM_SetupTrimDevice, first referenced in ./startup_ccs.obj" in CCS

Part Number: CC2662R-Q1


The message shows up every time I try to build my project. 

Here is setup.h where the symbol is mentioned apart from the .obj files.

#if !defined(DOXYGEN)
#define SetupTrimDevice NOROM_SetupTrimDevice
#endif

extern void SetupTrimDevice( void );

#if !defined(DRIVERLIB_NOROM) && !defined(DOXYGEN)
#include "../driverlib/rom.h"
#ifdef ROM_SetupTrimDevice
#undef SetupTrimDevice
#define SetupTrimDevice ROM_SetupTrimDevice
#endif
#endif

The .obj files seem to be created by the compiler and they mention the symbol but above is where it is defined. 

Main is also completely empty and setup.h is completely unchanged.

How would I solve this error? Is it something to do with DOXYGEN being defined elsewhere and the code skipping the if? Or have I not included a vital file or library?

Thanks in advance!