码迷,mamicode.com
首页 > 其他好文 > 详细

GPIO_ReadOutputDataBit及GPIO_ReadInputDataBit

时间:2018-05-29 23:04:55      阅读:335      评论:0      收藏:0      [点我收藏+]

标签:输出   read   #define   bsp   define   type   put   inpu   fine   

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

标签:输出   read   #define   bsp   define   type   put   inpu   fine   

原文地址:https://www.cnblogs.com/KING9/p/9108121.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!