rtic/examples/periodic.rs

39 lines
1,003 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 cortex_m_semihosting::hprintln;
use panic_semihosting as _;
2020-06-11 19:18:29 +02:00
use rtic::cyccnt::{Instant, U32Ext};
2018-11-03 17:02:41 +01:00
const PERIOD: u32 = 8_000_000;
// NOTE: does NOT work on QEMU!
2020-06-11 19:18:29 +02:00
#[rtic::app(device = lm3s6965, monotonic = rtic::cyccnt::CYCCNT)]
2018-11-03 17:02:41 +01:00
const APP: () = {
#[init(schedule = [foo])]
2019-08-21 10:17:27 +02:00
fn init(cx: init::Context) {
// omitted: initialization of `CYCCNT`
cx.schedule.foo(cx.start + PERIOD.cycles()).unwrap();
2018-11-03 17:02:41 +01:00
}
#[task(schedule = [foo])]
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
2019-08-21 10:17:27 +02:00
cx.schedule.foo(cx.scheduled + PERIOD.cycles()).unwrap();
2018-11-03 17:02:41 +01:00
}
// RTIC requires that unused interrupts are declared in an extern block when
// using software tasks; these free interrupts will be used to dispatch the
// software tasks.
2018-11-03 17:02:41 +01:00
extern "C" {
fn SSI0();
2018-11-03 17:02:41 +01:00
}
};