Expand your portfolio with free biotech stock tips

When I try to build the project I get the following error

'interrupt' attribute parameter 96 is out of bounds msp430fr5729

I have done similar migration for other MCUMSP430 F149and that worked like a charm.

Here is the code where it throws the error

/*  *Timer_A1 ISR  */ #if defined(__TI_COMPILER_VERSION__) || defined(__IAR_SYSTEMS_ICC__) #pragma vector=TIMER1_A0_VECTOR __interrupt void Timer1_A0 (void) #elif defined(__GNUC__) void __attribute__ ((interrupt(TIMER_A0_VECTOR))) Timer1_A0 (void) #else #error Compiler not supported!