stm32: rename HSI16 -> HSI

This commit is contained in:
Dario Nieuwenhuis
2023-10-22 22:39:55 +02:00
parent e70c531d3d
commit 412bcad2d1
22 changed files with 79 additions and 78 deletions

View File

@ -23,8 +23,8 @@ async fn main(_spawner: Spawner) {
info!("Hello World!");
let mut config = Config::default();
config.rcc.mux = ClockSrc::PLL1R(PllConfig {
source: PllSrc::HSI16,
config.rcc.mux = ClockSrc::PLL1_R(PllConfig {
source: PllSrc::HSI,
m: Pllm::DIV2,
n: Plln::MUL10,
r: Plldiv::DIV1,