aboutsummaryrefslogtreecommitdiff
path: root/tests/cfail/interrupt.rs
diff options
context:
space:
mode:
authorJorge Aparicio <jorge@japaric.io>2017-07-27 21:30:24 -0500
committerJorge Aparicio <jorge@japaric.io>2017-07-27 21:30:24 -0500
commit271df39bdba0690ea7ba77a6ff5d8d7edb9b8036 (patch)
tree26db49fa1a822a7a778dd903a2ce75ef1478f2ca /tests/cfail/interrupt.rs
parentb9f50e432eb2fe0f1276bb69c053bb9a7368675a (diff)
`Send`-ness check is now in rtfm-core
Diffstat (limited to 'tests/cfail/interrupt.rs')
-rw-r--r--tests/cfail/interrupt.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/cfail/interrupt.rs b/tests/cfail/interrupt.rs
index c70528f..f7879f4 100644
--- a/tests/cfail/interrupt.rs
+++ b/tests/cfail/interrupt.rs
@@ -14,7 +14,9 @@ app! {
tasks: {
// ERROR this interrupt doesn't exist
- EXTI33: {},
+ EXTI33: {
+ path: exti33,
+ },
},
}
@@ -23,3 +25,5 @@ fn init(_p: init::Peripherals) {}
fn idle() -> ! {
loop {}
}
+
+fn exti33() {}