stm32l5/
lib.rs

1//! Peripheral access API for STM32L5 microcontrollers
2//! (generated using [svd2rust](https://github.com/rust-embedded/svd2rust)
3//! 0.36.1)
4//!
5//! You can find an overview of the API here:
6//! [svd2rust/#peripheral-api](https://docs.rs/svd2rust/0.36.1/svd2rust/#peripheral-api)
7//!
8//! For more details see the README here:
9//! [stm32-rs](https://github.com/stm32-rs/stm32-rs)
10//!
11//! This crate supports all STM32L5 devices; for the complete list please
12//! see:
13//! [stm32l5](https://crates.io/crates/stm32l5)
14//!
15//! Due to doc build limitations, not all devices may be shown on docs.rs;
16//! a representative few have been selected instead. For a complete list of
17//! available registers and fields see: [stm32-rs Device Coverage](https://stm32-rs.github.io/stm32-rs/)
18
19#![allow(non_camel_case_types)]
20#![allow(non_snake_case)]
21#![no_std]
22
23mod generic;
24pub use self::generic::*;
25
26#[cfg(feature = "stm32l552")]
27pub mod stm32l552;
28
29#[cfg(feature = "stm32l562")]
30pub mod stm32l562;
31