aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-10-11 01:08:01 +0200
committerDario Nieuwenhuis <[email protected]>2023-10-11 01:22:27 +0200
commit21915a9a3fed5390c9f505fff29f49ee32d55e78 (patch)
tree26c8cb8e04229a9012bfe21c76a5910fe5972ba9 /tests
parentd0d0ceec6acc0bae8a16f0ebdffaf24b40a018cd (diff)
stm32/rcc: unify L0 and L1.
Diffstat (limited to 'tests')
-rw-r--r--tests/stm32/src/common.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/stm32/src/common.rs b/tests/stm32/src/common.rs
index f2ba5f7fc..2bf500798 100644
--- a/tests/stm32/src/common.rs
+++ b/tests/stm32/src/common.rs
@@ -332,7 +332,7 @@ pub fn config() -> Config {
332 use embassy_stm32::rcc::*; 332 use embassy_stm32::rcc::*;
333 config.rcc.mux = ClockSrc::PLL( 333 config.rcc.mux = ClockSrc::PLL(
334 // 32Mhz clock (16 * 4 / 2) 334 // 32Mhz clock (16 * 4 / 2)
335 PLLSource::HSI, 335 PLLSource::HSI16,
336 PLLMul::MUL4, 336 PLLMul::MUL4,
337 PLLDiv::DIV2, 337 PLLDiv::DIV2,
338 ); 338 );