1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! Parent module for all IMXRT101 devices.

/// Peripherals shared by multiple devices
pub mod peripherals;

/// Peripheral instances shared by multiple devices
pub(crate) mod instances;

#[cfg(any(feature = "imxrt1011", feature = "doc"))]
pub mod imxrt1011;

#[cfg(any(feature = "imxrt1015", feature = "doc"))]
pub mod imxrt1015;