Changed a confusing comment in an example about the event clearing

Signed-off-by: Daniel Egger <daniel@eggers-club.de>
This commit is contained in:
Daniel Egger 2019-10-23 20:53:38 +02:00
parent 2a61f5092d
commit c944a4e882
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ fn EXTI0_1() {
// Turn off LED
led.set_low();
// Clear interrupt
// Clear event triggering the interrupt
exti.pr.write(|w| w.pif1().set_bit());
}
});