Part Number: MSP430FR5969
Other Parts Discussed in Thread: MSP430WARE
Tool/software: Code Composer Studio
Hi,
I'm using CCs Version: 10.1.1.00004 . In my project I have imported MSP430ware driver lib. All works fine but I have a problem with _never_executed() intrinsic:
#pragma vector=PORT1_VECTOR
__interrupt void push_buttonS2_ISR(void)
{
switch(__even_in_range(P1IV,0x10))
{
case 0x02: break; // Pin 0
case 0x04: // Pin 1
GPIO_toggleOutputOnPin(LED_GREEN);
GPIO_clearInterrupt(LED_GREEN);
break;
case 0x06: break; // Pin 2
case 0x08: break; // Pin 3
case 0x0A: break; // Pin 4
case 0x0C: break; // Pin 5
case 0x0E: break; // Pin 6
case 0x10: break; // Pin 7
default: _never_executed();
}
}
The error message is: function '_never_executed()' cannot be resolved
I double check include options but I can't find a solution
Someone can help me?
Thank you so much
