1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
pub mod delay;
pub mod gpio;
pub mod sleeping_delay;
#[macro_use]
pub mod pad;
pub mod prelude;
pub mod spi_common;
pub mod time;
pub mod timer_traits;

#[cfg(any(feature = "samd11", feature = "samd21"))]
mod thumbv6m;
#[cfg(any(feature = "samd11", feature = "samd21"))]
pub use thumbv6m::*;

#[cfg(any(
    feature = "samd51",
    feature = "same51",
    feature = "same53",
    feature = "same54"
))]
mod thumbv7em;
#[cfg(any(
    feature = "samd51",
    feature = "same51",
    feature = "same53",
    feature = "same54"
))]
pub use thumbv7em::*;