Merge pull request #2605 from Gekkio/usv-on-l4

USB needs PWR_CR2 USV set on STM32L4
This commit is contained in:
Dario Nieuwenhuis 2024-02-20 20:03:21 +00:00 committed by GitHub
commit 18da9a2b66
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -264,7 +264,7 @@ impl<'d, T: Instance> Driver<'d, T> {
let regs = T::regs(); let regs = T::regs();
#[cfg(any(stm32l5, stm32wb))] #[cfg(any(stm32l4, stm32l5, stm32wb))]
crate::pac::PWR.cr2().modify(|w| w.set_usv(true)); crate::pac::PWR.cr2().modify(|w| w.set_usv(true));
#[cfg(pwr_h5)] #[cfg(pwr_h5)]