#![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> = 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) {}