aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32wl
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
parent39c737162185adb4f30f18f700da08a55be6b55a (diff)
stm32/rcc: consistent casing and naming for PLL enums.
Diffstat (limited to 'examples/stm32wl')
-rw-r--r--examples/stm32wl/src/bin/lora_lorawan.rs2
-rw-r--r--examples/stm32wl/src/bin/lora_p2p_receive.rs2
-rw-r--r--examples/stm32wl/src/bin/lora_p2p_send.rs2
-rw-r--r--examples/stm32wl/src/bin/random.rs2
-rw-r--r--examples/stm32wl/src/bin/rtc.rs2
5 files changed, 5 insertions, 5 deletions
diff --git a/examples/stm32wl/src/bin/lora_lorawan.rs b/examples/stm32wl/src/bin/lora_lorawan.rs
index 226e6786f..348e3cdce 100644
--- a/examples/stm32wl/src/bin/lora_lorawan.rs
+++ b/examples/stm32wl/src/bin/lora_lorawan.rs
@@ -44,7 +44,7 @@ async fn main(_spawner: Spawner) {
44 }); 44 });
45 config.rcc.mux = ClockSrc::PLL1_R; 45 config.rcc.mux = ClockSrc::PLL1_R;
46 config.rcc.pll = Some(Pll { 46 config.rcc.pll = Some(Pll {
47 source: PLLSource::HSE, 47 source: PllSource::HSE,
48 prediv: PllPreDiv::DIV2, 48 prediv: PllPreDiv::DIV2,
49 mul: PllMul::MUL6, 49 mul: PllMul::MUL6,
50 divp: None, 50 divp: None,
diff --git a/examples/stm32wl/src/bin/lora_p2p_receive.rs b/examples/stm32wl/src/bin/lora_p2p_receive.rs
index a3bb0c0f9..c643ddb15 100644
--- a/examples/stm32wl/src/bin/lora_p2p_receive.rs
+++ b/examples/stm32wl/src/bin/lora_p2p_receive.rs
@@ -37,7 +37,7 @@ async fn main(_spawner: Spawner) {
37 }); 37 });
38 config.rcc.mux = ClockSrc::PLL1_R; 38 config.rcc.mux = ClockSrc::PLL1_R;
39 config.rcc.pll = Some(Pll { 39 config.rcc.pll = Some(Pll {
40 source: PLLSource::HSE, 40 source: PllSource::HSE,
41 prediv: PllPreDiv::DIV2, 41 prediv: PllPreDiv::DIV2,
42 mul: PllMul::MUL6, 42 mul: PllMul::MUL6,
43 divp: None, 43 divp: None,
diff --git a/examples/stm32wl/src/bin/lora_p2p_send.rs b/examples/stm32wl/src/bin/lora_p2p_send.rs
index 08dd0845e..7fe8cea3e 100644
--- a/examples/stm32wl/src/bin/lora_p2p_send.rs
+++ b/examples/stm32wl/src/bin/lora_p2p_send.rs
@@ -37,7 +37,7 @@ async fn main(_spawner: Spawner) {
37 }); 37 });
38 config.rcc.mux = ClockSrc::PLL1_R; 38 config.rcc.mux = ClockSrc::PLL1_R;
39 config.rcc.pll = Some(Pll { 39 config.rcc.pll = Some(Pll {
40 source: PLLSource::HSE, 40 source: PllSource::HSE,
41 prediv: PllPreDiv::DIV2, 41 prediv: PllPreDiv::DIV2,
42 mul: PllMul::MUL6, 42 mul: PllMul::MUL6,
43 divp: None, 43 divp: None,
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,
diff --git a/examples/stm32wl/src/bin/rtc.rs b/examples/stm32wl/src/bin/rtc.rs
index b3b7f9c5c..4ffb0bb58 100644
--- a/examples/stm32wl/src/bin/rtc.rs
+++ b/examples/stm32wl/src/bin/rtc.rs
@@ -24,7 +24,7 @@ async fn main(_spawner: Spawner) {
24 }); 24 });
25 config.rcc.mux = ClockSrc::PLL1_R; 25 config.rcc.mux = ClockSrc::PLL1_R;
26 config.rcc.pll = Some(Pll { 26 config.rcc.pll = Some(Pll {
27 source: PLLSource::HSE, 27 source: PllSource::HSE,
28 prediv: PllPreDiv::DIV2, 28 prediv: PllPreDiv::DIV2,
29 mul: PllMul::MUL6, 29 mul: PllMul::MUL6,
30 divp: None, 30 divp: None,