Downcast timer to GP16 for time drivers.

This commit is contained in:
Matous Hybl 2021-12-02 18:07:05 +01:00
parent 2d620df9d6
commit 6e0eb33ea8

View file

@ -295,7 +295,7 @@ macro_rules! impl_timer {
type Interrupt = crate::interrupt::$inst; type Interrupt = crate::interrupt::$inst;
fn regs() -> TimGp16 { fn regs() -> TimGp16 {
crate::pac::$inst crate::pac::timer::TimGp16(crate::pac::$inst.0)
} }
} }