I'm using an MSP430AFE253 and the only thing I want to do is set P1.0 and P1.1 to 1 (high logic level) at the start of my code. At some point in the code, I want to be able to set them low for x clock cycles and then set them high again.
Do I do:
P1SEL = BIT0 + BIT1;
P1DIR = 0x0x1;
P1OUT = BIT1;
to set the pins high? Because then how do I set only P1.0 high and not P1.1...