Tool/software: TI C/C++ Compiler
Hi,
I need to do conditional compilation as below -
#ifdef ADCINA0
interrupt void adca1_isr(void);
#elif ADCIND5
interrupt void adcd1_isr(void);
#endif
I am getting a compilation error when ADCINA0 is not defined and ADCIND5 is defined.
What is the way to do this in Code Composer Studio ?
Thanks and best regards
Bhawandeep Singh