When the MCU is in Halt/Active-halt mode, PA1 is automatically configured in input weak pull up and cannot be used for waking up the device. In this mode, the output state of PA1 is not driven. It is recommended to use PA1 only in input mode if Halt/Active-halt is used in the application.
上述是PA1的注意事项,你可以用上述代码测试一下PA的其他口,如果可以使用。你在配置时钟时增加先写:CLK_ECKR_HSEEN=0,试一下,能不能操作PA1和PA2。
RE:stm8s的PA端口复用问题?
2、通过设置PA_DDRx来设置PAx口的方向
3、通过Px_ODR来输出高低电平或者Px_IDR来读取输入电平。
回复:stm8s的PA端口复用问题?
PA_CR1=0x06;
PA_ODR=0x06;//输出高
测试结果A_IDR=0;
电压:0V
RE:stm8s的PA端口复用问题?
RE:stm8s的PA端口复用问题?
上述是PA1的注意事项,你可以用上述代码测试一下PA的其他口,如果可以使用。你在配置时钟时增加先写:CLK_ECKR_HSEEN=0,试一下,能不能操作PA1和PA2。
回复:stm8s的PA端口复用问题?