I get next kind of liner error:
"../lnk_cc430f5137.cmd", line 168: error: placement fails for object ".int48",
size 0x4 (page 0). Available ranges:
INT48 size: 0x2 unused: 0x2 max hole: 0x2
error: errors encountered during linking; "LedFlasher_Simpliciti_5137.out" not
built
In this project I have simpliciti header files included and in my own code have intterupt service:
#define PORT_INT_VECTOR PORT2_VECTOR
#pragma vector=PORT_INT_VECTOR
__interrupt void Port_INT_ISR(void)
{
}
So I think that this error comes because there is other interrupt service for PORT2 some where in simpliciti code but I can't find out where.
My controller uses CC1101 radio because it is CC430F5137. Any help for this?