Part Number: TMS320F280040-Q1
Tried this piece of code in Visual Studio and it works.
Under CCS, it caused "unsolved symbols". But after including <stdio.h>, <stdlib.h>, it still doesn't work. Anyone can help with this? Thanks!
#ifdef DEBUG_PRINT
#define debugPrintf(...) UART_Printf(__VA_ARGS__);
#else
#define debugPrintf(...) /* Do nothing */
#endif