2018-11-03 17:02:41 +01:00
|
|
|
//! examples/schedule.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_halt as _;
|
|
|
|
use rtfm::cyccnt::{Instant, U32Ext as _};
|
2018-11-03 17:02:41 +01:00
|
|
|
|
|
|
|
// NOTE: does NOT work on QEMU!
|
2019-06-13 23:56:59 +02:00
|
|
|
#[rtfm::app(device = lm3s6965, monotonic = rtfm::cyccnt::CYCCNT)]
|
2018-11-03 17:02:41 +01:00
|
|
|
const APP: () = {
|
|
|
|
#[init(schedule = [foo, bar])]
|
2019-08-21 10:17:27 +02:00
|
|
|
fn init(cx: init::Context) {
|
2018-11-03 17:02:41 +01:00
|
|
|
let now = Instant::now();
|
|
|
|
|
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
|
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) {
|
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
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
fn UART0();
|
|
|
|
}
|
|
|
|
};
|