把一个引脚配制成输入,且配置成默认读取为1,是不是要配制成上拉引脚,弱上拉是不是悬空的时候读取到就是1了?用以下两句代码实现,不知道对不对,如果不对,该如何写呢?
GPIOPinTypeGPIOInput(GPIO_PORTF_BASE,GPIO_PIN_4);//使能PF4为输ru、
GPIOPadConfigSet(GPIO_PORTF_BASE, GPIO_PIN_4,GPIO_STRENGTH_2MA,GPIO_PIN_TYPE_STD_WPU);//PF4有弱上拉。
另外一个问题:
以下是我找到的关于引脚配置的一段话,是不是意思是GPIOPadConfigSet如果配置给已经配置为输入功能的PIn,那么该语句的作用仅仅只是配置为上拉或者下拉?
. For pin(s) configured as input ports, the pad is configured as requested, but the only real
effect on the input is the configuration of the pull-up or pull-down termination.
|