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

STM32 常用GPIO操作函数记录

时间:2016-09-10 23:39:08      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:

STM32读具体GPIOx的某一位是1还是0

 1 /**
 2   * @brief  Reads the specified input port pin.
 3   * @param  GPIOx: where x can be (A..G) to select the GPIO peripheral.
 4   * @param  GPIO_Pin:  specifies the port bit to read.
 5   *   This parameter can be GPIO_Pin_x where x can be (0..15).
 6   * @retval The input port pin value.
 7   */
 8 uint8_t GPIO_ReadInputDataBit(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin)
 9 {
10   uint8_t bitstatus = 0x00;
11   
12   /* Check the parameters */
13   assert_param(IS_GPIO_ALL_PERIPH(GPIOx));
14   assert_param(IS_GET_GPIO_PIN(GPIO_Pin)); 
15   
16   if ((GPIOx->IDR & GPIO_Pin) != (uint32_t)Bit_RESET)
17   {
18     bitstatus = (uint8_t)Bit_SET;
19   }
20   else
21   {
22     bitstatus = (uint8_t)Bit_RESET;
23   }
24   return bitstatus;
25 }

 

STM32 常用GPIO操作函数记录

标签:

原文地址:http://www.cnblogs.com/prayer521/p/5860588.html

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