#api-access #stm32 #svd2rust

no-std stm32l5

STM32L5 设备支持包

6 个版本 (重大更改)

0.15.1 2022 年 7 月 4 日
0.15.0 2022 年 7 月 4 日
0.14.0 2021 年 10 月 3 日
0.13.0 2021 年 2 月 15 日
0.11.0 2020 年 4 月 26 日

#2097嵌入式开发

每月 36 次下载
stm32-hal2 中使用

MIT/Apache

19MB
536K SLoC

stm32l5

此包提供了一个自动生成的 API,用于访问 STM32L5 外设。API 使用带有修补的 svd 文件并通过 svd2rust 生成,这些文件包含广泛的安全类型支持。有关更多信息,请参阅 主仓库

参阅文档以获取完整详情。

用法

每个此包支持的设备都位于功能门后面,因此您只需编译您想要的设备。要使用,在您的 Cargo.toml 中

[dependencies.stm32l5]
version = "0.15.1"
features = ["stm32l552"]

rt 功能默认启用,并提供了对 cortex-m-rt 的支持。要禁用,请在 Cargo.toml 中指定 default-=false

在您的代码中

use stm32l5::stm32l552;

let mut peripherals = stm32l552::Peripherals::take().unwrap();
let gpioa = &peripherals.GPIOA;
gpioa.odr.modify(|_, w| w.odr0().set_bit());

有关自动生成 API 的完整信息,请参阅: https://docs.rs/svd2rust/0.24.1/svd2rust/#peripheral-api

支持的设备

模块 设备 链接
stm32l552 STM32L552 RM0438st.com
stm32l562 STM32L562 RM0438st.com

依赖关系