2018-11-03 17:02:41 +01:00
|
|
|
//! examples/schedule.rs
|
|
|
|
|
2020-01-21 22:13:23 +01:00
|
|
|
#![deny(unsafe_code)]
|
2018-11-03 17:02:41 +01:00
|
|
|
#![deny(warnings)]
|
|
|
|
#![no_main]
|
|
|
|
#![no_std]
|
|
|
|
|
2019-06-13 23:56:59 +02:00
|
|
|
use panic_halt as _;
|
2018-11-03 17:02:41 +01:00
|
|
|
|
|
|
|
// NOTE: does NOT work on QEMU!
|
2021-02-20 19:22:45 +01:00
|
|
|
#[rtic::app(device = lm3s6965, dispatchers = [SSI0])]
|
2020-05-19 20:00:13 +02:00
|
|
|
mod app {
|
2020-10-15 18:50:17 +02:00
|
|
|
use cortex_m::peripheral::DWT;
|
|
|
|
use cortex_m_semihosting::hprintln;
|
|
|
|
use rtic::cyccnt::{Instant, U32Ext as _};
|
|
|
|
|
2020-10-11 18:38:38 +02:00
|
|
|
#[init()]
|
2021-02-20 19:22:45 +01:00
|
|
|
fn init(mut cx: init::Context) -> (init::LateResources, init::Monotonics) {
|
2019-10-16 01:44:49 +02:00
|
|
|
// Initialize (enable) the monotonic timer (CYCCNT)
|
|
|
|
cx.core.DCB.enable_trace();
|
2020-01-21 22:13:23 +01:00
|
|
|
// required on Cortex-M7 devices that software lock the DWT (e.g. STM32F7)
|
|
|
|
DWT::unlock();
|
2019-10-16 01:44:49 +02:00
|
|
|
cx.core.DWT.enable_cycle_counter();
|
|
|
|
|
|
|
|
// semantically, the monotonic timer is frozen at time "zero" during `init`
|
2020-01-21 22:23:20 +01:00
|
|
|
// NOTE do *not* call `Instant::now` in this context; it will return a nonsense value
|
2019-10-16 01:44:49 +02:00
|
|
|
let now = cx.start; // the start time of the system
|
2018-11-03 17:02:41 +01:00
|
|
|
|
2018-11-04 19:57:39 +01:00
|
|
|
hprintln!("init @ {:?}", now).unwrap();
|
2018-11-03 17:02:41 +01:00
|
|
|
|
|
|
|
// Schedule `foo` to run 8e6 cycles (clock cycles) in the future
|
2020-10-11 18:38:38 +02:00
|
|
|
foo::schedule(now + 8_000_000.cycles()).unwrap();
|
2018-11-03 17:02:41 +01:00
|
|
|
|
|
|
|
// Schedule `bar` to run 4e6 cycles in the future
|
2020-10-11 18:38:38 +02:00
|
|
|
bar::schedule(now + 4_000_000.cycles()).unwrap();
|
2020-10-01 19:38:49 +02:00
|
|
|
|
2021-02-20 19:22:45 +01:00
|
|
|
(init::LateResources {}, init::Monotonics())
|
2018-11-03 17:02:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[task]
|
2019-04-21 20:10:40 +02:00
|
|
|
fn foo(_: foo::Context) {
|
2018-11-04 19:57:39 +01:00
|
|
|
hprintln!("foo @ {:?}", Instant::now()).unwrap();
|
2018-11-03 17:02:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[task]
|
2019-04-21 20:10:40 +02:00
|
|
|
fn bar(_: bar::Context) {
|
2018-11-04 19:57:39 +01:00
|
|
|
hprintln!("bar @ {:?}", Instant::now()).unwrap();
|
2018-11-03 17:02:41 +01:00
|
|
|
}
|
2020-04-22 12:58:14 +02:00
|
|
|
}
|