We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4456885 + d68908f commit e8709adCopy full SHA for e8709ad
nrf-hal-common/src/clocks.rs
@@ -24,7 +24,11 @@ pub struct LfOscStarted;
24
pub struct LfOscStopped;
25
26
/// High Frequency Clock Frequency (in Hz).
27
+#[cfg(not(feature = "51"))]
28
pub const HFCLK_FREQ: u32 = 64_000_000;
29
+#[cfg(feature = "51")]
30
+pub const HFCLK_FREQ: u32 = 16_000_000;
31
+
32
/// Low Frequency Clock Frequency (in Hz).
33
pub const LFCLK_FREQ: u32 = 32_768;
34
0 commit comments