1#![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;