aboutsummaryrefslogtreecommitdiff
path: root/embassy-mcxa/src/clocks/mod.rs
diff options
context:
space:
mode:
authorFelipe Balbi <[email protected]>2025-12-03 14:07:57 -0800
committerFelipe Balbi <[email protected]>2025-12-05 08:01:13 -0800
commitae285b84ed551aa5c81443fcacb73e788a6d36c2 (patch)
tree920f04c2c4fe9fbead55ec931a08a9dbd59b84bb /embassy-mcxa/src/clocks/mod.rs
parenta382238225ea55ee478bbde9ddb7d0d37cf004b5 (diff)
CRC
Fixes #74 Signed-off-by: Felipe Balbi <[email protected]>
Diffstat (limited to 'embassy-mcxa/src/clocks/mod.rs')
-rw-r--r--embassy-mcxa/src/clocks/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/embassy-mcxa/src/clocks/mod.rs b/embassy-mcxa/src/clocks/mod.rs
index 9c9e6ef3d..1b23a9d9f 100644
--- a/embassy-mcxa/src/clocks/mod.rs
+++ b/embassy-mcxa/src/clocks/mod.rs
@@ -923,6 +923,8 @@ pub(crate) mod gate {
923 impl_cc_gate!(GPIO3, mrcc_glb_cc2, mrcc_glb_rst2, gpio3, NoConfig); 923 impl_cc_gate!(GPIO3, mrcc_glb_cc2, mrcc_glb_rst2, gpio3, NoConfig);
924 impl_cc_gate!(GPIO4, mrcc_glb_cc2, mrcc_glb_rst2, gpio4, NoConfig); 924 impl_cc_gate!(GPIO4, mrcc_glb_cc2, mrcc_glb_rst2, gpio4, NoConfig);
925 925
926 impl_cc_gate!(CRC0, mrcc_glb_cc0, mrcc_glb_rst0, crc0, NoConfig);
927
926 // These peripherals DO have meaningful configuration, and could fail if the system 928 // These peripherals DO have meaningful configuration, and could fail if the system
927 // clocks do not match their needs. 929 // clocks do not match their needs.
928 #[cfg(not(feature = "time"))] 930 #[cfg(not(feature = "time"))]