程序: GPIO_Handle hGpio; hGpio=GPIO_open(GPIO_DEV0,GPIO_OPEN_RESET); GPIO_pinEnable(hGpio,GPIO_PIN5); GPIO_pinDirection(hGpio,GPIO_PIN5,GPIO_OUTPUT);
GPIO_pinWrite(hGpio,GPIO_PIN5,0); GPIO_pinWrite(hGpio,GPIO_PIN5,1);
最后运行时可以看到寄存器GPEN,GPDIR,GPVAL确实变化而且是对的,但是IO口的电平就是不变,而这口用作中断是没有问题的,PIN4也是如此! 各位遇到过没有? 是不是还有什么要设置的? 在线等!!
|