1_GPIO

STM32CubeMX-GPIO配置

芯片:STM32F103RCT6
CubeMX版本:5.6.1

CubeMX配置

  • 时钟源配置

    RCC

    • master clock output
      与其它定时器一起使用,同步信号
    • HSE/LSE
      • disable
      • bypass clock source
        外部直接输入时钟信号,一般用不到
      • crystal/ceramic resonator
        一般开发板上自带用于产生时钟源信号
  • GPIO配置

    GPIO

    • GPIO output level
      GPIO默认初始输出电平
    • GPIO mode
      • output open drain
        利用外部电源驱动负载,驱动能力较大
      • output push pull
        利用芯片内部电流直接驱动负载,驱动能力较小
    • GPIO pull up/pull down
      内部上下拉,在引脚状态不能确定的时候固定引脚的状态
    • Max output speed
      GPIO输出速度

操作函数

  • HAL_GPIO_ReadPin()
  • HAL_GPIO_WritePin()
  • HAL_GPIO_TogglePin()

本文地址:https://blog.csdn.net/weixin_44075087/article/details/107940021

(0)
上一篇 2022年3月23日
下一篇 2022年3月23日

相关推荐