aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-10-10 23:37:10 +0000
committerGitHub <[email protected]>2023-10-10 23:37:10 +0000
commit233aa1b53a91ea0696d879ca86d72026c029c691 (patch)
tree26c8cb8e04229a9012bfe21c76a5910fe5972ba9 /tests
parent9be61a2967ad48c8faf6a25770c3be1b110b29a4 (diff)
parent21915a9a3fed5390c9f505fff29f49ee32d55e78 (diff)
Merge pull request #2037 from embassy-rs/stm32-pac-pll-enums
stm32/rcc: rename hse32 to hse, 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 );