efm32hg_pac/
lib.rs

1//! Peripheral access API for EFM32HG microcontrollers
2//! (generated using [svd2rust](https://github.com/rust-embedded/svd2rust)
3//! 0.28.0)
4//!
5//! You can find an overview of the API here:
6//! [svd2rust/#peripheral-api](https://docs.rs/svd2rust/0.28.0/svd2rust/#peripheral-api)
7//!
8//! For more details see the README here:
9//! [efm32-rs](https://github.com/efm32-rs/efm32hg-pacs)
10//!
11//! This crate supports all EFM32HG devices; for the complete list please see:
12//! [efm32hg](https://github.com/efm32-rs/efm32hg-pacs/pacs/efm32hg)
13
14#![allow(non_camel_case_types)]
15#![allow(non_snake_case)]
16#![no_std]
17
18mod generic;
19pub use self::generic::*;
20
21#[cfg(feature = "efm32hg108")]
22pub mod efm32hg108;
23
24#[cfg(feature = "efm32hg110")]
25pub mod efm32hg110;
26
27#[cfg(feature = "efm32hg210")]
28pub mod efm32hg210;
29
30#[cfg(feature = "efm32hg222")]
31pub mod efm32hg222;
32
33#[cfg(feature = "efm32hg308")]
34pub mod efm32hg308;
35
36#[cfg(feature = "efm32hg309")]
37pub mod efm32hg309;
38
39#[cfg(feature = "efm32hg310")]
40pub mod efm32hg310;
41
42#[cfg(feature = "efm32hg321")]
43pub mod efm32hg321;
44
45#[cfg(feature = "efm32hg322")]
46pub mod efm32hg322;
47
48#[cfg(feature = "efm32hg350")]
49pub mod efm32hg350;