blob: ad286cf3811e69c67274ed790685d62cd47c8eea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//! A clock configuration module (CCM) driver for i.MX RT 1000 MCUs.
//!
//! The APIs and modules exposed by this package may not always work on your
//! MCU! You're expected to pick and choose the components that are available.
//! If you're not sure what those are, use a chip-specific package that does
//! the filtering for you.
#![no_std]
pub mod ral {
pub(crate) use ral_registers::{modify_reg, read_reg, write_reg};
pub mod ccm;
pub mod ccm_analog;
}
pub mod ahb;
pub mod ccm;
pub mod ccm_analog;
|