Generate exti interrupt handlers

Match interrupts starting with ^EXTI and generate init code and irq
handler for them
This commit is contained in:
Ulf Lilleengen
2021-05-19 10:40:57 +02:00
committed by Dario Nieuwenhuis
parent 8172db6d8e
commit 0cd3236fa3
3 changed files with 43 additions and 46 deletions

View File

@@ -49,8 +49,8 @@ pub fn init(_config: Config) -> Peripherals {
let p = Peripherals::take();
unsafe {
exti::init();
dma::init();
interrupt::exti::init();
}
p