This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

MSP430G2553 P1.4口无法输出高电平

Other Parts Discussed in Thread: MSP430G2553

在Proteus仿真中,同时使P1和P2一共16个I/O口输出,P1.4始终无法输出高电平!

#include "msp430G2553.h"
void main( )
{
WDTCTL = WDTPW + WDTHOLD;
P1DIR=0xff;
P2DIR=0xff;
while(1)
{ P1OUT=0XFF;P2OUT=0xFF;} 
}