mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-24 04:32:52 +01:00
56 lines
913 B
Rust
56 lines
913 B
Rust
|
#![allow(warnings)]
|
||
|
// #![deny(unsafe_code)]
|
||
|
// #![deny(warnings)]
|
||
|
#![feature(proc_macro)]
|
||
|
#![no_std]
|
||
|
|
||
|
#[macro_use]
|
||
|
extern crate cortex_m;
|
||
|
extern crate cortex_m_rtfm as rtfm;
|
||
|
// extern crate panic_abort;
|
||
|
extern crate panic_itm;
|
||
|
extern crate stm32f103xx;
|
||
|
|
||
|
use core::mem;
|
||
|
|
||
|
use cortex_m::asm;
|
||
|
use cortex_m::peripheral::{DWT, ITM};
|
||
|
use rtfm::{app, Resource};
|
||
|
|
||
|
app! {
|
||
|
device: stm32f103xx,
|
||
|
|
||
|
free_interrupts: [EXTI1],
|
||
|
|
||
|
tasks: {
|
||
|
exti0: {
|
||
|
interrupt: EXTI0,
|
||
|
async_after: [a],
|
||
|
},
|
||
|
|
||
|
a: {},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
const S: u32 = 8_000_000;
|
||
|
|
||
|
#[inline(always)]
|
||
|
fn init(mut ctxt: init::Context) -> init::LateResources {
|
||
|
init::LateResources {}
|
||
|
}
|
||
|
|
||
|
#[inline(always)]
|
||
|
fn idle(ctxt: idle::Context) -> ! {
|
||
|
loop {
|
||
|
asm::wfi();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn exti0(mut ctxt: exti0::Context) {
|
||
|
ctxt.async.a.post(&mut ctxt.threshold, 1 * S, ());
|
||
|
}
|
||
|
|
||
|
fn a(ctxt: a::Context) {
|
||
|
asm::bkpt();
|
||
|
}
|