Other Parts Discussed in Thread: MSP-TS430RSB40
When I set the I/O port from P2.0 to P3.7 to high level,but it doesn't works at the development board.
. The code reads as follows:
#include <msp430.h>
void main( void )
{
// Stop watchdog timer to prevent time out reset
WDTCTL = WDTPW + WDTHOLD;
P1DIR |=BIT0;
P1OUT |=BIT0;
P2DIR |=0xff;
P2OUT |=0xff;
P3DIR |=0xff;
P3OUT |=0xff;
}