Tool/software: Code Composer Studio
Hi ,
For an example as below:
#define _DBG 1
#if(_DBG == 1)
Uint16 abc = 1
xxxxxxx
#endif
If CCS Build Set Active is Debug , the code will run #if(_DBG == 1).
If CCS Build Set Active is Release , the code does not run #if(_DBG == 1). In other words , #define _DBG will from 1 to 0.
How to set different define for Debug / Release build?
