aboutsummaryrefslogtreecommitdiff
path: root/drivers/ccm-10xx/src/lib.rs
diff options
context:
space:
mode:
authorIan McIntyre <me@mciantyre.dev>2025-11-30 18:52:34 -0500
committerIan McIntyre <me@mciantyre.dev>2025-11-30 19:10:51 -0500
commit76199f21616ad86cf68f3b063c1ce23c6fc5a52f (patch)
tree4c076d0afd649803a2bd9a5ed5cbb1f1c74fb459 /drivers/ccm-10xx/src/lib.rs
First commit
Diffstat (limited to 'drivers/ccm-10xx/src/lib.rs')
-rw-r--r--drivers/ccm-10xx/src/lib.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/drivers/ccm-10xx/src/lib.rs b/drivers/ccm-10xx/src/lib.rs
new file mode 100644
index 0000000..ad286cf
--- /dev/null
+++ b/drivers/ccm-10xx/src/lib.rs
@@ -0,0 +1,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;