We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e10754 commit d1103feCopy full SHA for d1103fe
src/timer/mod.rs
@@ -97,7 +97,7 @@ pub(super) mod private {
97
use crate::timer::MicroSecond;
98
use cortex_m::peripheral::syst::SystClkSource;
99
use fugit::HertzU32;
100
- use stm32g0::stm32g081::SYST;
+ use crate::pac::SYST;
101
102
use super::{Rcc, TimerFrequencySettings};
103
src/timer/monotonics.rs
@@ -296,6 +296,7 @@ impl Irq for pac::TIM3 {
296
const IRQ: pac::Interrupt = pac::Interrupt::TIM3;
297
}
298
299
+#[cfg(any(feature = "stm32g070", feature = "stm32g071", feature = "stm32g081"))]
300
impl Irq for pac::TIM15 {
301
const IRQ: pac::Interrupt = pac::Interrupt::TIM15;
302
0 commit comments