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!