aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32wl/src/bin/random.rs
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-11-13 00:52:01 +0100
committerDario Nieuwenhuis <[email protected]>2023-11-13 00:52:01 +0100
commit4fe344ebc0f4e030ff7a03755f27e66e9ad0476f (patch)
treef4c40f8f346d52f2180ccf39f2d811337a2e9621 /examples/stm32wl/src/bin/random.rs
parent39c737162185adb4f30f18f700da08a55be6b55a (diff)
stm32/rcc: consistent casing and naming for PLL enums.
Diffstat (limited to 'examples/stm32wl/src/bin/random.rs')
-rw-r--r--examples/stm32wl/src/bin/random.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/stm32wl/src/bin/random.rs b/examples/stm32wl/src/bin/random.rs
index 1a8822b42..2fd234966 100644
--- a/examples/stm32wl/src/bin/random.rs
+++ b/examples/stm32wl/src/bin/random.rs
@@ -25,7 +25,7 @@ async fn main(_spawner: Spawner) {
25 }); 25 });
26 config.rcc.mux = ClockSrc::PLL1_R; 26 config.rcc.mux = ClockSrc::PLL1_R;
27 config.rcc.pll = Some(Pll { 27 config.rcc.pll = Some(Pll {
28 source: PLLSource::HSE, 28 source: PllSource::HSE,
29 prediv: PllPreDiv::DIV2, 29 prediv: PllPreDiv::DIV2,
30 mul: PllMul::MUL6, 30 mul: PllMul::MUL6,
31 divp: None, 31 divp: None,