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.

Compiler/TMS320F28379D: Does Code Composer Studio C Compiler support #elif

Part Number: TMS320F28379D

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

  • I am unable to reproduce the problem.

    The best way to work through preprocessor problems like this one is by using the compiler option --gen_preprocessor_listing.  Please search for that option in the C28x compiler manual.  It produces a listing file with the same name as the source file, with the extension changed to .rl.  You can see source lines before and after preprocessing.  This often helps you understand and then fix the problem.

    Thanks and regards,

    -George