rtic/examples/double_schedule.rs

29 lines
599 B
Rust
Raw Normal View History

//! examples/double_schedule.rs
#![deny(unsafe_code)]
#![deny(warnings)]
#![no_main]
#![no_std]
use panic_semihosting as _;
2021-02-20 19:22:45 +01:00
#[rtic::app(device = lm3s6965, dispatchers = [SSI0])]
2020-09-25 15:24:53 +02:00
mod app {
#[init]
2021-02-20 19:22:45 +01:00
fn init(_: init::Context) -> (init::LateResources, init::Monotonics) {
task1::spawn().ok();
2021-02-20 19:22:45 +01:00
(init::LateResources {}, init::Monotonics())
}
#[task]
fn task1(_cx: task1::Context) {
task2::schedule(_cx.scheduled + 100.cycles()).ok();
}
#[task]
fn task2(_cx: task2::Context) {
task1::schedule(_cx.scheduled + 100.cycles()).ok();
}
2020-09-25 15:24:53 +02:00
}