rtic/examples/schedule.rs

52 lines
1.2 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 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_semihosting::hprintln;
use dwt_systick_monotonic::{
consts::{U0, U8},
DwtSystick,
};
use rtic::time::duration::Seconds;
#[monotonic(binds = SysTick, default = true)]
type MyMono = DwtSystick<U8, U0, U0>; // 8 MHz
2020-10-15 18:50:17 +02:00
2020-10-11 18:38:38 +02:00
#[init()]
fn init(cx: init::Context) -> (init::LateResources, init::Monotonics) {
let mut dcb = cx.core.DCB;
let dwt = cx.core.DWT;
let systick = cx.core.SYST;
let mono = DwtSystick::new(&mut dcb, dwt, systick, 8_000_000);
2018-11-03 17:02:41 +01:00
hprintln!("init").unwrap();
2018-11-03 17:02:41 +01:00
// Schedule `foo` to run 1 second in the future
foo::spawn_after(Seconds(1_u32)).unwrap();
2018-11-03 17:02:41 +01:00
// Schedule `bar` to run 2 seconds in the future
bar::spawn_after(Seconds(2_u32)).unwrap();
2020-10-01 19:38:49 +02:00
(init::LateResources {}, init::Monotonics(mono))
2018-11-03 17:02:41 +01:00
}
#[task]
2019-04-21 20:10:40 +02:00
fn foo(_: foo::Context) {
hprintln!("foo").unwrap();
2018-11-03 17:02:41 +01:00
}
#[task]
2019-04-21 20:10:40 +02:00
fn bar(_: bar::Context) {
hprintln!("bar").unwrap();
2018-11-03 17:02:41 +01:00
}
2020-04-22 12:58:14 +02:00
}