aboutsummaryrefslogtreecommitdiff
path: root/embassy-rp/src/clocks.rs
diff options
context:
space:
mode:
authorRafael Bachmann <[email protected]>2024-03-25 15:09:41 +0100
committerRafael Bachmann <[email protected]>2024-03-25 15:09:41 +0100
commite139a4e076b2f61ddf0cdfa2ed5484ecb327afad (patch)
tree32ad7a96c3e73c9b957f378f8234314fcb4dc80b /embassy-rp/src/clocks.rs
parentcf789be420f73a04f40b47500c916bbd8cd4740e (diff)
fix: CI
Diffstat (limited to 'embassy-rp/src/clocks.rs')
-rw-r--r--embassy-rp/src/clocks.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/embassy-rp/src/clocks.rs b/embassy-rp/src/clocks.rs
index b02f3796f..b7f6aeac9 100644
--- a/embassy-rp/src/clocks.rs
+++ b/embassy-rp/src/clocks.rs
@@ -1,4 +1,5 @@
1//! Clock configuration for the RP2040 1//! Clock configuration for the RP2040
2use core::arch::asm;
2use core::marker::PhantomData; 3use core::marker::PhantomData;
3use core::sync::atomic::{AtomicU16, AtomicU32, Ordering}; 4use core::sync::atomic::{AtomicU16, AtomicU32, Ordering};
4 5
@@ -7,6 +8,7 @@ use pac::clocks::vals::*;
7 8
8use crate::gpio::sealed::Pin; 9use crate::gpio::sealed::Pin;
9use crate::gpio::AnyPin; 10use crate::gpio::AnyPin;
11use crate::pac::common::{Reg, RW};
10use crate::{pac, reset, Peripheral}; 12use crate::{pac, reset, Peripheral};
11 13
12// NOTE: all gpin handling is commented out for future reference. 14// NOTE: all gpin handling is commented out for future reference.