While compiling in CCS6, I encountered this error:
#10056 symbol "__TI_int47" redefined
(Compiling for the MSP430 using Code Composer Studio by Texas Instruments)
It happens when declaring an Interrupt Service Routine, such as:
#pragma vector=PORT1_VECTOR
__interrupt void P1input_ISR ()
{
P1IFG &= ~BIT0; // mark interrupt as "handled"
}
What causes these anonymous-looking symbols to be generated?
How can the code be tracked down that generated the symbol?