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]
|
|
|
|
|
2021-03-03 08:53:03 +01:00
|
|
|
use panic_semihosting 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_semihosting::hprintln;
|
2021-04-07 11:09:21 +02:00
|
|
|
use dwt_systick_monotonic::DwtSystick;
|
2021-02-23 19:35:26 +01:00
|
|
|
use rtic::time::duration::Seconds;
|
|
|
|
|
2021-05-23 14:11:51 +02:00
|
|
|
const MONO_HZ: u32 = 8_000_000; // 8 MHz
|
|
|
|
|
2021-02-23 19:35:26 +01:00
|
|
|
#[monotonic(binds = SysTick, default = true)]
|
2021-05-23 14:11:51 +02:00
|
|
|
type MyMono = DwtSystick<MONO_HZ>;
|
2020-10-15 18:50:17 +02:00
|
|
|
|
2021-07-07 22:50:59 +02:00
|
|
|
#[shared]
|
|
|
|
struct Shared {}
|
|
|
|
|
|
|
|
#[local]
|
|
|
|
struct Local {}
|
|
|
|
|
|
|
|
#[init]
|
|
|
|
fn init(cx: init::Context) -> (Shared, Local, init::Monotonics) {
|
2021-02-23 19:35:26 +01:00
|
|
|
let mut dcb = cx.core.DCB;
|
|
|
|
let dwt = cx.core.DWT;
|
|
|
|
let systick = cx.core.SYST;
|
2019-10-16 01:44:49 +02:00
|
|
|
|
2021-02-23 19:35:26 +01:00
|
|
|
let mono = DwtSystick::new(&mut dcb, dwt, systick, 8_000_000);
|
2018-11-03 17:02:41 +01:00
|
|
|
|
2021-05-23 14:11:51 +02:00
|
|
|
hprintln!("init").ok();
|
2018-11-03 17:02:41 +01:00
|
|
|
|
2021-02-23 19:35:26 +01:00
|
|
|
// Schedule `foo` to run 1 second in the future
|
2021-05-23 14:11:51 +02:00
|
|
|
foo::spawn_after(Seconds(1_u32)).ok();
|
2018-11-03 17:02:41 +01:00
|
|
|
|
2021-02-23 19:35:26 +01:00
|
|
|
// Schedule `bar` to run 2 seconds in the future
|
2021-05-23 14:11:51 +02:00
|
|
|
bar::spawn_after(Seconds(2_u32)).ok();
|
2020-10-01 19:38:49 +02:00
|
|
|
|
2021-07-07 22:50:59 +02:00
|
|
|
(Shared {}, Local {}, init::Monotonics(mono))
|
2018-11-03 17:02:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[task]
|
2019-04-21 20:10:40 +02:00
|
|
|
fn foo(_: foo::Context) {
|
2021-05-23 14:11:51 +02:00
|
|
|
hprintln!("foo").ok();
|
2018-11-03 17:02:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[task]
|
2019-04-21 20:10:40 +02:00
|
|
|
fn bar(_: bar::Context) {
|
2021-05-23 14:11:51 +02:00
|
|
|
hprintln!("bar").ok();
|
2018-11-03 17:02:41 +01:00
|
|
|
}
|
2020-04-22 12:58:14 +02:00
|
|
|
}
|