rtic/tests/cfail/token-transfer.rs
Jorge Aparicio d665ea95b3 WIP
2018-05-15 19:20:30 +02:00

43 lines
779 B
Rust

#![deny(unsafe_code)]
#![deny(warnings)]
#![feature(const_fn)]
#![feature(proc_macro)]
#![no_main]
#![no_std]
extern crate cortex_m_rtfm as rtfm;
extern crate panic_itm;
extern crate stm32f103xx;
extern crate typenum;
use rtfm::{app, Priority};
use typenum::consts::U1;
app! { //~ error bound `*const (): core::marker::Send` is not satisfied
device: stm32f103xx,
resources: {
static TOKEN: Option<Priority<U1>> = None;
},
idle: {
resources: [TOKEN],
},
tasks: {
exti0: {
interrupt: EXTI0,
resources: [TOKEN],
},
}
}
fn init(_ctxt: init::Context) -> init::LateResources {
init::LateResources {}
}
fn idle(_ctxt: idle::Context) -> ! {
loop {}
}
fn exti0(_ctxt: exti0::Context) {}