rtic/examples/periodic.rs

35 lines
817 B
Rust
Raw Normal View History

2018-11-03 17:02:41 +01:00
//! examples/periodic.rs
#![deny(unsafe_code)]
#![deny(warnings)]
#![no_main]
#![no_std]
use panic_semihosting as _;
2018-11-03 17:02:41 +01:00
// NOTE: does NOT work on QEMU!
2020-10-23 10:35:56 +02:00
#[rtic::app(device = lm3s6965, monotonic = rtic::cyccnt::CYCCNT, dispatchers = [SSI0])]
2020-05-19 20:00:13 +02:00
mod app {
2020-10-15 18:50:17 +02:00
use cortex_m_semihosting::hprintln;
use rtic::cyccnt::{Instant, U32Ext};
const PERIOD: u32 = 8_000_000;
2020-05-19 20:00:13 +02:00
#[init]
2020-10-01 19:38:49 +02:00
fn init(cx: init::Context) -> init::LateResources {
// omitted: initialization of `CYCCNT`
foo::schedule(cx.start + PERIOD.cycles()).unwrap();
2020-10-01 19:38:49 +02:00
init::LateResources {}
2018-11-03 17:02:41 +01:00
}
#[task]
2019-08-21 10:17:27 +02:00
fn foo(cx: foo::Context) {
2018-11-03 17:02:41 +01:00
let now = Instant::now();
2019-08-21 10:17:27 +02:00
hprintln!("foo(scheduled = {:?}, now = {:?})", cx.scheduled, now).unwrap();
2018-11-03 17:02:41 +01:00
foo::schedule(cx.scheduled + PERIOD.cycles()).unwrap();
2018-11-03 17:02:41 +01:00
}
2020-04-22 12:58:14 +02:00
}