Hi all,
I am using CCSv6 ( Version: 6.0.0.00190) and all my code is compiling fine until I add lines for re-mapping ports
// Port Mapping:
_disable_interrupt();
PMAPKEYID = 0x02D52;
PMAPCTL = 0x0002; //Allow later reconfiguration
P8MAP2 = PM_UCB1SDA;
P8MAP3 = PM_UCB1SCL;
PMAPKEYID = 0x0000;
_enable_interrupt();
The Compiler gives the following error messages: #20 identifier "PMAPKEYID" is undefined
I am using it with MSP430F5438A and as far as I could see, the HW settings in the CCS project are correct.
Any idea how I could identify the root cause is highly appreciated.