I am having difficulty getting P2.6 and P2.7 to be used as general IO pins instead of XTAL pins, on a MSP430G2553.
My setting from CCS 6.1:
BCSCTL1 = CALBC1_1MHZ;
DCOCTL = CALDCO_1MHZ;
_BIS_SR(OSCOFF);
P2DIR = 0xFF; //set all P2 to output
P2OUT = 0x00; //set all P2 to high
Is there more I have to do?