请问p89lpc901的p3.0脚和p3.1脚怎么设置才可以进行输出输入模式,要在哪个地方设?我设置了,但是不能进行脚位控制,急着用,谢谢。 #include "reg93 #include "uart2.h" void InitIO(void) { P3M1=0x00;//端口设置 P3M2=0x00; uart2txd=1; } sbit uart2txd=P3^0; //pin of the UART2 TxD sbit uart2rxd=P3^1; //pin of the UART2 RxD
void main(void) { InitIO(); //初始化系统 uart2txd=1; uart2rxd=0; }
|