2018-11-03 17:02:41 +01:00
|
|
|
//! examples/periodic.rs
|
|
|
|
|
|
|
|
#![deny(unsafe_code)]
|
|
|
|
#![deny(warnings)]
|
|
|
|
#![no_main]
|
|
|
|
#![no_std]
|
|
|
|
|
2018-11-04 19:57:39 +01:00
|
|
|
use cortex_m_semihosting::hprintln;
|
2019-06-13 23:56:59 +02:00
|
|
|
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) {
|
2019-10-16 01:44:49 +02:00
|
|
|
// omitted: initialization of `CYCCNT`
|
|
|
|
|
2020-05-26 07:33:18 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
fn UART0();
|
|
|
|
}
|
|
|
|
};
|