diff options
Diffstat (limited to 'tests/cfail/wrong-threshold.rs')
| -rw-r--r-- | tests/cfail/wrong-threshold.rs | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/cfail/wrong-threshold.rs b/tests/cfail/wrong-threshold.rs index 05ebb2f..57d6d30 100644 --- a/tests/cfail/wrong-threshold.rs +++ b/tests/cfail/wrong-threshold.rs @@ -3,7 +3,6 @@ #![feature(proc_macro)] #![no_std] -#[macro_use(task)] extern crate cortex_m_rtfm as rtfm; extern crate stm32f103xx; @@ -20,12 +19,14 @@ app! { tasks: { EXTI0: { enabled: true, + path: exti0, priority: 1, resources: [A, B], }, EXTI1: { enabled: true, + path: exti1, priority: 2, resources: [A, B], }, @@ -38,8 +39,6 @@ fn idle() -> ! { loop {} } -task!(EXTI0, exti0); - fn exti0(mut ot: &mut Threshold, r: EXTI0::Resources) { r.A.claim(&mut ot, |_a, mut _it| { //~^ error cannot borrow `ot` as mutable more than once at a time @@ -49,6 +48,4 @@ fn exti0(mut ot: &mut Threshold, r: EXTI0::Resources) { }); } -task!(EXTI1, exti1); - fn exti1(_t: &mut Threshold, r: EXTI1::Resources) {} |
