rtic/examples/preempt.rs

46 lines
925 B
Rust
Raw Normal View History

2019-08-21 10:17:27 +02:00
//! examples/preempt.rs
#![no_main]
#![no_std]
use panic_semihosting as _;
2020-06-11 19:18:29 +02:00
use rtic::app;
2019-08-21 10:17:27 +02:00
2021-09-22 13:22:45 +02:00
#[app(device = lm3s6965, dispatchers = [SSI0, QEI0])]
2020-05-19 20:00:13 +02:00
mod app {
2020-10-15 18:50:17 +02:00
use cortex_m_semihosting::{debug, hprintln};
2021-07-07 22:50:59 +02:00
#[shared]
struct Shared {}
#[local]
struct Local {}
2019-08-21 10:17:27 +02:00
#[init]
2021-07-07 22:50:59 +02:00
fn init(_: init::Context) -> (Shared, Local, init::Monotonics) {
2021-09-22 13:22:45 +02:00
foo::spawn().unwrap();
2020-10-01 19:38:49 +02:00
2021-07-07 22:50:59 +02:00
(Shared {}, Local {}, init::Monotonics())
2019-08-21 10:17:27 +02:00
}
2021-09-22 13:22:45 +02:00
#[task(priority = 1)]
fn foo(_: foo::Context) {
hprintln!("foo - start");
2021-09-22 13:22:45 +02:00
baz::spawn().unwrap();
hprintln!("foo - end");
2021-09-22 13:22:45 +02:00
debug::exit(debug::EXIT_SUCCESS); // Exit QEMU simulator
2019-08-21 10:17:27 +02:00
}
2021-09-22 13:22:45 +02:00
#[task(priority = 2)]
fn bar(_: bar::Context) {
hprintln!(" bar");
2019-08-21 10:17:27 +02:00
}
2021-09-22 13:22:45 +02:00
#[task(priority = 2)]
fn baz(_: baz::Context) {
hprintln!(" baz - start");
2021-09-22 13:22:45 +02:00
bar::spawn().unwrap();
hprintln!(" baz - end");
2019-08-21 10:17:27 +02:00
}
2020-04-22 12:58:14 +02:00
}