rtic/examples/async-after.rs

50 lines
785 B
Rust
Raw Normal View History

#![deny(unsafe_code)]
#![deny(warnings)]
2018-04-29 08:45:31 +02:00
#![feature(proc_macro)]
#![no_std]
extern crate cortex_m;
extern crate cortex_m_rtfm as rtfm;
extern crate panic_abort;
2018-04-29 08:45:31 +02:00
extern crate stm32f103xx;
use cortex_m::asm;
use rtfm::app;
2018-04-29 08:45:31 +02:00
app! {
device: stm32f103xx,
free_interrupts: [EXTI1],
tasks: {
exti0: {
interrupt: EXTI0,
async_after: [a],
},
a: {},
},
}
const S: u32 = 8_000_000;
#[inline(always)]
fn init(_ctxt: init::Context) -> init::LateResources {
2018-04-29 08:45:31 +02:00
init::LateResources {}
}
#[inline(always)]
fn idle(_ctxt: idle::Context) -> ! {
2018-04-29 08:45:31 +02:00
loop {
asm::wfi();
}
}
fn exti0(mut ctxt: exti0::Context) {
ctxt.async.a.post(&mut ctxt.threshold, 1 * S, ()).ok();
2018-04-29 08:45:31 +02:00
}
fn a(_ctxt: a::Context) {
2018-04-29 08:45:31 +02:00
asm::bkpt();
}