From aa2249454975a203e459597005944f5370c1d200 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Thu, 27 Jul 2017 11:40:15 -0500 Subject: update tests and examples with task! gone 3 types of errors / gotchas have been eliminated :tada: --- tests/cfail/token-transfer.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'tests/cfail/token-transfer.rs') diff --git a/tests/cfail/token-transfer.rs b/tests/cfail/token-transfer.rs index 7bf4233..b8bcc00 100644 --- a/tests/cfail/token-transfer.rs +++ b/tests/cfail/token-transfer.rs @@ -3,7 +3,6 @@ #![feature(proc_macro)] #![no_std] -#[macro_use(task)] extern crate cortex_m_rtfm as rtfm; extern crate stm32f103xx; @@ -19,6 +18,7 @@ app! { //~ error bound `rtfm::Threshold: core::marker::Send` is not satisfied tasks: { EXTI0: { enabled: true, + path: exti0, priority: 1, resources: [TOKEN], }, @@ -31,6 +31,4 @@ fn idle() -> ! { loop {} } -task!(EXTI0, exti0); - fn exti0(_t: &mut Threshold, _r: EXTI0::Resources) {} -- cgit v1.2.3