mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
add another duplicated-handler cfail test
This commit is contained in:
parent
fb4542818b
commit
a14b0121b7
1 changed files with 40 additions and 0 deletions
40
tests/cfail/duplicated-handler-2.rs
Normal file
40
tests/cfail/duplicated-handler-2.rs
Normal file
|
@ -0,0 +1,40 @@
|
|||
#![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) {}
|
Loading…
Reference in a new issue