diff options
Diffstat (limited to 'tests/cfail/interrupt.rs')
-rw-r--r-- | tests/cfail/interrupt.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/cfail/interrupt.rs b/tests/cfail/interrupt.rs index 2969d1f9..c70528f0 100644 --- a/tests/cfail/interrupt.rs +++ b/tests/cfail/interrupt.rs @@ -7,14 +7,14 @@ extern crate stm32f103xx; use rtfm::app; -app! { //~ error no associated item named `EXTI0` found for type +app! { + //~^ error no associated item named `EXTI33` found for type + //~| error no associated item named `EXTI33` found for type device: stm32f103xx, tasks: { - // ERROR `enabled` needs to be specified for interrupts - EXTI0: { - priority: 1, - }, + // ERROR this interrupt doesn't exist + EXTI33: {}, }, } |