added FDCANSEL logic for H7

This commit is contained in:
Maia 2024-02-27 11:07:05 -08:00
parent 62c5df7e5b
commit b7e0964a07

View file

@ -557,6 +557,9 @@ pub(crate) unsafe fn init(config: Config) {
RCC.d3ccipr().modify(|w| {
w.set_adcsel(config.adc_clock_source);
});
RCC.d2ccip1r().modify(|w| {
w.set_fdcansel(config.fdcan_clock_source);
});
}
#[cfg(stm32h5)]
{