STM32 常用GPIO操作函数记录

Posted prayer521

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了STM32 常用GPIO操作函数记录相关的知识,希望对你有一定的参考价值。

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操作函数记录的主要内容,如果未能解决你的问题,请参考以下文章

单片机STM32开发中常用库函数分析

常用的stm32库函数

STM32F103五分钟入门系列GPIO的常用库函数使用方法总结+一个网络上的误区

STM32F1常用外设介绍(超详细35000字介绍)

STM32基本GPIO操作:按键输入(扫描+外部中断)

STM32的位操作问题