GPIO_ReadOutputDataBit及GPIO_ReadInputDataBit
Posted KING9
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GPIO_ReadOutputDataBit及GPIO_ReadInputDataBit相关的知识,希望对你有一定的参考价值。
GPIO_ReadInputDataBit(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin)读的是GPIOx_IDR,读的是当IO口设置为输入状态时候的IO口值
GPIO_ReadOutputDataBit(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin)读的是GPIOx_ODR,读的是当IO口设置为输出状态时候的IO口值
#define KEY0 GPIO_ReadInputDataBit(GPIOE,GPIO_Pin_4) //PE4
#define KEY1 GPIO_ReadInputDataBit(GPIOE,GPIO_Pin_3) //PE3
#define KEY2 GPIO_ReadInputDataBit(GPIOE,GPIO_Pin_2) //PE2
#define WK_UP GPIO_ReadInputDataBit(GPIOA,GPIO_Pin_0) //PA0
以上是关于GPIO_ReadOutputDataBit及GPIO_ReadInputDataBit的主要内容,如果未能解决你的问题,请参考以下文章