Im trying to make the button work as an interrupt but pin 1.3 is 0V so the only way to accomplish the interrupt is to jumper 3.3V to that pin. I'm using an edge interrupt and the button takes pin 1.3 to ground but if pin 1.3 is already low it does nothing.
How do I get pin 1.3 to be high and look for the low edge???
Here is some code I have written already, BUTTON is BIT3.
WDTCTL = WDTPW + WDTHOLD; // Stop watchdog timer
P2DIR |= (BIT0 + BIT1 + BIT2 + BIT3);//Set Port2.0.1.2.3 direction to output
P2OUT &= ~(BIT0 + BIT1 + BIT2 + BIT3);//Set Port2.0.1.2.3 to all zero
P1DIR |=