aboutsummaryrefslogtreecommitdiff
path: root/tests/cfail/duplicated-handler-2.rs
diff options
context:
space:
mode:
authorJorge Aparicio <jorge@japaric.io>2017-07-27 11:40:15 -0500
committerJorge Aparicio <jorge@japaric.io>2017-07-27 11:40:15 -0500
commitaa2249454975a203e459597005944f5370c1d200 (patch)
treeb6cf75b34302cf7681712c82bffa2841631ef998 /tests/cfail/duplicated-handler-2.rs
parent0b5afce771cb9e5cc42c4fd4c5e18f020bf1ecad (diff)
update tests and examples
with task! gone 3 types of errors / gotchas have been eliminated :tada:
Diffstat (limited to 'tests/cfail/duplicated-handler-2.rs')
-rw-r--r--tests/cfail/duplicated-handler-2.rs40
1 files changed, 0 insertions, 40 deletions
diff --git a/tests/cfail/duplicated-handler-2.rs b/tests/cfail/duplicated-handler-2.rs
deleted file mode 100644
index d02770c..0000000
--- a/tests/cfail/duplicated-handler-2.rs
+++ /dev/null
@@ -1,40 +0,0 @@
-#![deny(warnings)]
-#![feature(proc_macro)]
-#![no_std]
-
-#[macro_use(task)]
-extern crate cortex_m_rtfm as rtfm;
-extern crate stm32f103xx;
-
-use rtfm::{app, Threshold};
-
-app! {
- device: stm32f103xx,
-
- resources: {
- static ON: bool = false;
- },
-
- tasks: {
- EXTI0: {
- enabled: true,
- path: exti0,
- priority: 1,
- resources: [ON],
- },
- },
-}
-
-fn init(_p: init::Peripherals, _r: init::Resources) {}
-
-fn idle() -> ! {
- loop {}
-}
-
-fn exti0(_r: EXTI0::Resources) {}
-
-// ERROR can't override the task handler specified in `app!`
-task!(EXTI0, exti1);
-//~^ error cannot find value `EXTI0`
-
-fn exti1(_t: &mut Threshold, _r: EXTI0::Resources) {}