rtic/examples/schedule.rs

54 lines
1.6 KiB
Rust
Raw Normal View History

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