2017-04-28 02:06:22 +02:00
|
|
|
// error-pattern: field `Exti0` specified more than once
|
2017-04-12 23:05:48 +02:00
|
|
|
|
|
|
|
#![feature(used)]
|
|
|
|
|
|
|
|
#[macro_use]
|
2017-04-21 07:24:54 +02:00
|
|
|
extern crate cortex_m_rtfm as rtfm;
|
2017-04-12 23:05:48 +02:00
|
|
|
|
2017-04-28 02:06:22 +02:00
|
|
|
use rtfm::{C0, C1, C16, C2, P0, P1, P2};
|
|
|
|
use device::interrupt::{Exti0, Exti1};
|
2017-04-12 23:05:48 +02:00
|
|
|
|
|
|
|
// WRONG: Two tasks mapped to the same interrupt handler
|
|
|
|
tasks!(device, {
|
2017-04-25 16:29:29 +02:00
|
|
|
j1: Task {
|
|
|
|
interrupt: Exti0,
|
|
|
|
priority: P1,
|
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
j2: Task {
|
|
|
|
interrupt: Exti0,
|
|
|
|
priority: P2,
|
|
|
|
enabled: true,
|
|
|
|
},
|
2017-04-12 23:05:48 +02:00
|
|
|
});
|
|
|
|
|
2017-04-21 07:24:54 +02:00
|
|
|
fn init(_: P0, _: &C16) {}
|
2017-04-12 23:05:48 +02:00
|
|
|
|
2017-04-28 02:06:22 +02:00
|
|
|
fn idle(_: P0, _: C0) -> ! {
|
2017-04-21 07:24:54 +02:00
|
|
|
loop {}
|
|
|
|
}
|
2017-04-12 23:05:48 +02:00
|
|
|
|
2017-04-28 02:06:22 +02:00
|
|
|
fn j1(_task: Exti0, _prio: P1, _ceil: C1) {}
|
2017-04-12 23:05:48 +02:00
|
|
|
|
2017-04-28 02:06:22 +02:00
|
|
|
fn j2(_task: Exti0, _prio: P2, _ceil: C2) {}
|
2017-04-12 23:05:48 +02:00
|
|
|
|
2017-04-22 04:24:28 +02:00
|
|
|
// fake device crate
|
|
|
|
extern crate core;
|
|
|
|
extern crate cortex_m;
|
2017-04-12 23:05:48 +02:00
|
|
|
|
|
|
|
mod device {
|
|
|
|
pub mod interrupt {
|
2017-04-28 02:06:22 +02:00
|
|
|
use cortex_m::ctxt::Context;
|
2017-04-12 23:05:48 +02:00
|
|
|
use cortex_m::interrupt::Nr;
|
|
|
|
|
|
|
|
extern "C" fn default_handler<T>(_: T) {}
|
|
|
|
|
|
|
|
pub struct Handlers {
|
|
|
|
pub Exti0: extern "C" fn(Exti0),
|
|
|
|
pub Exti1: extern "C" fn(Exti1),
|
2017-04-28 02:06:22 +02:00
|
|
|
pub Exti2: extern "C" fn(Exti2),
|
2017-04-12 23:05:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct Exti0;
|
|
|
|
pub struct Exti1;
|
2017-04-28 02:06:22 +02:00
|
|
|
pub struct Exti2;
|
2017-04-12 23:05:48 +02:00
|
|
|
|
|
|
|
pub enum Interrupt {
|
|
|
|
Exti0,
|
|
|
|
Exti1,
|
2017-04-28 02:06:22 +02:00
|
|
|
Exti2,
|
2017-04-12 23:05:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
unsafe impl Nr for Interrupt {
|
|
|
|
fn nr(&self) -> u8 {
|
|
|
|
0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-28 02:06:22 +02:00
|
|
|
unsafe impl Context for Exti0 {}
|
|
|
|
|
|
|
|
unsafe impl Nr for Exti0 {
|
|
|
|
fn nr(&self) -> u8 {
|
|
|
|
0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe impl Context for Exti1 {}
|
|
|
|
|
|
|
|
unsafe impl Nr for Exti1 {
|
|
|
|
fn nr(&self) -> u8 {
|
|
|
|
0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe impl Context for Exti2 {}
|
|
|
|
|
|
|
|
unsafe impl Nr for Exti2 {
|
|
|
|
fn nr(&self) -> u8 {
|
|
|
|
0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-12 23:05:48 +02:00
|
|
|
pub const DEFAULT_HANDLERS: Handlers = Handlers {
|
|
|
|
Exti0: default_handler,
|
|
|
|
Exti1: default_handler,
|
2017-04-28 02:06:22 +02:00
|
|
|
Exti2: default_handler,
|
2017-04-12 23:05:48 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|