谁能说说这两个函数的区别是什么?
u8 GPIO_ReadInputDataBit(GPIO_TypeDef* GPIOx, u16 GPIO_Pin);
u8 GPIO_ReadOutputDataBit(GPIO_TypeDef* GPIOx, u16 GPIO_Pin);
如果一个引脚设置成输出,通过函数 GPIO_ReadOutputDataBit(GPIO_TypeDef* GPIOx, u16 GPIO_Pin)读取的是该引脚端口上的电平还是外部引脚上的电平??
即一输出引脚输出1,该引脚上被外部强制拉为0,那通过 u8 GPIO_ReadOutputDataBit(GPIO_TypeDef* GPIOx, u16 GPIO_Pin) 读的的将是0还是1?
请指点~~~~~~
|