在 bluepill 开发板上使用 stm32f1xx_hal 对 GPIO 输出进行外设初始化

Posted

技术标签:

【中文标题】在 bluepill 开发板上使用 stm32f1xx_hal 对 GPIO 输出进行外设初始化【英文标题】:Peripheral Initialisation of GPIO Output with stm32f1xx_hal on bluepill development board 【发布时间】:2021-10-02 14:18:39 【问题描述】:

我想在我的蓝色药丸板上初始化一个基本输出 GPIO 引脚。我正在使用 Rust 和 stm32f1xx_hal 板条箱。我想创建一个结构Peripherals,它以下列方式保存输出的句柄:

use cortex_m_rt;

use stm32f1xx_hal::
  pac, 
  prelude::*,
  gpio,
  afio,
  serial::Serial, Config,
;

use crate::pac::USART1;

type GpioOutput = gpio::gpioc::PC13<gpio::Output<gpio::PushPull>>;

pub struct Peripherals
  led: Option<GpioOutput>


impl Peripherals 
  fn init() -> Peripherals 

    let dp = pac::Peripherals::take().unwrap();
    let cp = cortex_m::Peripherals::take().unwrap();

    // set clock frequency to internal 8mhz oscillator
    let mut rcc = dp.RCC.constrain();
    let mut flash = dp.FLASH.constrain();
    let clocks = rcc.cfgr.sysclk(8.mhz()).freeze(&mut flash.acr);

    // access PGIOC registers
    let mut gpioc = dp.GPIOC.split(&mut rcc.apb2);

    return Peripherals
      led: Peripherals::init_led(&mut gpioc)
    
  

  fn init_led(gpioc: &mut gpio::gpioc::Parts) -> Option<GpioOutput> 
    let led = &gpioc.pc13.into_push_pull_output(&mut gpioc.crh);
    return Some(led);
  


此代码不起作用,因为init_led 返回Option&lt;&amp;GpioOutput&gt;。现在我想知道在Peripherals 结构中使用生命周期参数并在结构中存储对GpioOutput 的引用是否有意义。还是存储未引用的值更明智 - 我将如何实现这些选项中的任何一个?

似乎唯一可行的解​​决方案是将 init_led 代码移动到 init 函数的范围内:

return Peripherals
  led: Some(gpioc.pc13.into_push_pull_output(&mut gpioc.crh))

但我想将该代码分离到它自己的函数中。我该怎么做?

【问题讨论】:

【参考方案1】:

好的,我想出了一个办法,以防其他人遇到同样的问题:

  pub fn init() -> Peripherals 

    let dp = pac::Peripherals::take().unwrap();
    let cp = cortex_m::Peripherals::take().unwrap();

    // set clock frequency to internal 8mhz oscillator
    let rcc = dp.RCC.constrain();

    let mut flash = dp.FLASH.constrain();

    // access PGIOC and PGIOB registers and prepare the alternate function I/O registers
    let mut apb2 = rcc.apb2;
    let gpioc = dp.GPIOC.split(&mut apb2);

    let clocks = rcc.cfgr.sysclk(8.mhz()).freeze(&mut flash.acr);

    return Peripherals
      led: Peripherals::init_led(gpioc)
    
  

  fn init_led(mut gpioc: stm32f1xx_hal::gpio::gpioc::Parts) -> Option<GpioOutput> 
    let led = gpioc.pc13.into_push_pull_output(&mut gpioc.crh);
    return Some(led);
  

我只是想知道这是否是正确的方法还是会产生额外的开销,因为我在 init_led 函数中通过值而不是通过引用传递 gpioc?

【讨论】:

以上是关于在 bluepill 开发板上使用 stm32f1xx_hal 对 GPIO 输出进行外设初始化的主要内容,如果未能解决你的问题,请参考以下文章

STM32F103C8 Bluepill板HAL_delay()问题

AIR32F103 搭载 AIR32F103CBT6 的Bluepill核心板

带有 STM32f103c8t6 Bluepill 和 CAN 总线的 HAL_CAN_ERROR_PARAM

STM32F1HAL库的I2C应用注意事项

STM32 bluepill USB 引导加载程序 DFU

STM32F1固件库详解