aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/stm32wba/src/bin/usb_hs_serial.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/stm32wba/src/bin/usb_hs_serial.rs b/examples/stm32wba/src/bin/usb_hs_serial.rs
index 4684e3aa6..1ffd94906 100644
--- a/examples/stm32wba/src/bin/usb_hs_serial.rs
+++ b/examples/stm32wba/src/bin/usb_hs_serial.rs
@@ -28,7 +28,7 @@ async fn main(_spawner: Spawner) {
28 config.rcc.sys = Sysclk::HSE; 28 config.rcc.sys = Sysclk::HSE;
29 // route HSE into the USB‐OTG‐HS block 29 // route HSE into the USB‐OTG‐HS block
30 config.rcc.mux.otghssel = mux::Otghssel::HSE; 30 config.rcc.mux.otghssel = mux::Otghssel::HSE;
31 config.rcc.sys = Sysclk::PLL1_R; 31 config.rcc.sys = Sysclk::HSE;
32 config.rcc.voltage_scale = VoltageScale::RANGE1; 32 config.rcc.voltage_scale = VoltageScale::RANGE1;
33 33
34 let p = embassy_stm32::init(config); 34 let p = embassy_stm32::init(config);