stm32f4开发笔记

这篇博客详细介绍了STM32F4的GPIO配置,包括配置流程和GPIO_InitTypeDef结构体分析,重点讲解了开漏输出和推挽输出的区别。接着讨论了PWM配置,包括输出频率计算和占空比设置。此外,还阐述了中断相关的内容,如中断请求服务函数、中断标志位的判断与清除。最后提到了特殊函数assert的使用。
摘要由CSDN通过智能技术生成

初始化

GPIO配置

配置流程

通常为:
1.GPIOx口时钟使能
如:RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA, ENABLE);
2.配置初始化结构体,见下
3.初始化GPIO口

GPIO_InitTypeDef结构体分析

源码:

typedef struct
{
  uint32_t GPIO_Pin;              /*!< Specifies the GPIO pins to be configured.
                                       This parameter can be any value of @ref GPIO_pins_define */

  GPIOMode_TypeDef GPIO_Mode;     /*!< Specifies the operating mode for the selected pins.
                                       This parameter can be a value of @ref GPIOMode_TypeDef */

  GPIOSpeed_TypeDef GPIO_Speed;   /*!< Specifies the speed for the selected pins.
                                       This parameter can be a value of @ref GPIOSpeed_TypeDef */

  GPIOOType_TypeDef GPIO_OType;   /*!< Specifies the operating output type for the selected pins.
                                       This parameter can be a value of @ref GPIOOType_TypeDef */

  GPIOPuPd_TypeDef GPIO_PuPd;     /*!< Specifies the operating Pull-up/Pull down for the selected pins.
                                       This parameter can be a value of @ref GPIOPuPd_TypeDef */
}GPIO_InitTypeDef;

这里可说的不多,基本上通过字面意思和查找相应的结构体定义都能理解,这里着重说一下GPIO_OType和GPIO_PuPd。

先看GPIO_OType:

typedef enum
{
  GPIO_OType_PP = 0x00,
  GPIO_OType_OD = 0x01
}GPIOOType_TypeDef;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值