Tool/software: Code Composer Studio
Hi,
I want to switch to GNU v6.2.1.16 compiler in CCS 6.2.0.00050. My interrupt routines are disabled with the message "Compiler not supported!"
#if defined(__TI_COMPILER_VERSION__) || defined(__IAR_SYSTEMS_ICC__)
#pragma vector=USCI_A1_VECTOR
__interrupt void USCI_A1_ISR(void)
#elif defined(__GNUC__)
void __attribute__ ((interrupt(USCI_A0_VECTOR))) USCI_A0_ISR (void)
#else
#error Compiler not supported!
#endif
How can I use interrupt routines with GNU Compiler? Where can I find the documentation of the GCC?
Thank you for your help

