stm32/rcc: add pllsai clock

This commit is contained in:
xoviat
2023-04-14 21:28:27 -05:00
parent 650589ab3f
commit f395ec44e8
2 changed files with 8 additions and 2 deletions

View File

@ -479,8 +479,11 @@ pub(crate) unsafe fn init(config: Config) {
pll48: plls.pll48clk.map(Hertz),
#[cfg(not(any(stm32f410, stm32f411, stm32f412, stm32f413, stm32f423, stm32f446)))]
#[cfg(not(stm32f410))]
plli2s: plls.plli2sclk.map(Hertz),
#[cfg(any(stm32f427, stm32f429, stm32f437, stm32f439, stm32f446, stm32f469, stm32f479))]
pllsai: None,
});
}