diff options
| author | Dario Nieuwenhuis <[email protected]> | 2023-10-11 01:01:27 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2023-10-11 01:06:44 +0200 |
| commit | d0d0ceec6acc0bae8a16f0ebdffaf24b40a018cd (patch) | |
| tree | 15b366498a888c75450cea9d3c4dcee58dc3f6c4 /examples/stm32wl/src/bin/lora_lorawan.rs | |
| parent | 9be61a2967ad48c8faf6a25770c3be1b110b29a4 (diff) | |
stm32/rcc: rename HSE32 to HSE
Diffstat (limited to 'examples/stm32wl/src/bin/lora_lorawan.rs')
| -rw-r--r-- | examples/stm32wl/src/bin/lora_lorawan.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/stm32wl/src/bin/lora_lorawan.rs b/examples/stm32wl/src/bin/lora_lorawan.rs index fb2495326..6546a4bfa 100644 --- a/examples/stm32wl/src/bin/lora_lorawan.rs +++ b/examples/stm32wl/src/bin/lora_lorawan.rs | |||
| @@ -33,7 +33,7 @@ bind_interrupts!(struct Irqs{ | |||
| 33 | #[embassy_executor::main] | 33 | #[embassy_executor::main] |
| 34 | async fn main(_spawner: Spawner) { | 34 | async fn main(_spawner: Spawner) { |
| 35 | let mut config = embassy_stm32::Config::default(); | 35 | let mut config = embassy_stm32::Config::default(); |
| 36 | config.rcc.mux = embassy_stm32::rcc::ClockSrc::HSE32; | 36 | config.rcc.mux = embassy_stm32::rcc::ClockSrc::HSE; |
| 37 | config.rcc.rtc_mux = embassy_stm32::rcc::RtcClockSource::LSI; | 37 | config.rcc.rtc_mux = embassy_stm32::rcc::RtcClockSource::LSI; |
| 38 | let p = embassy_stm32::init(config); | 38 | let p = embassy_stm32::init(config); |
| 39 | 39 | ||
