mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-27 14:04:56 +01:00
Merge #365
365: Regression in master on double schedule example r=AfoHT a=korken89 Co-authored-by: Emil Fresk <emil.fresk@gmail.com>
This commit is contained in:
commit
4d61437bb4
2 changed files with 41 additions and 0 deletions
|
@ -50,6 +50,10 @@ required-features = ["__v7"]
|
||||||
name = "types"
|
name = "types"
|
||||||
required-features = ["__v7"]
|
required-features = ["__v7"]
|
||||||
|
|
||||||
|
[[example]]
|
||||||
|
name = "double_schedule"
|
||||||
|
required-features = ["__v7"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cortex-m = "0.6.2"
|
cortex-m = "0.6.2"
|
||||||
cortex-m-rtic-macros = { path = "macros", version = "0.5.2" }
|
cortex-m-rtic-macros = { path = "macros", version = "0.5.2" }
|
||||||
|
|
37
examples/double_schedule.rs
Normal file
37
examples/double_schedule.rs
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
//! examples/double_schedule.rs
|
||||||
|
|
||||||
|
#![deny(unsafe_code)]
|
||||||
|
#![deny(warnings)]
|
||||||
|
#![no_main]
|
||||||
|
#![no_std]
|
||||||
|
|
||||||
|
use panic_semihosting as _;
|
||||||
|
use rtic::cyccnt::U32Ext;
|
||||||
|
|
||||||
|
#[rtic::app(device = lm3s6965, monotonic = rtic::cyccnt::CYCCNT)]
|
||||||
|
const APP: () = {
|
||||||
|
struct Resources {
|
||||||
|
nothing: (),
|
||||||
|
}
|
||||||
|
|
||||||
|
#[init(spawn = [task1])]
|
||||||
|
fn init(cx: init::Context) -> init::LateResources {
|
||||||
|
cx.spawn.task1().ok();
|
||||||
|
|
||||||
|
init::LateResources { nothing: () }
|
||||||
|
}
|
||||||
|
|
||||||
|
#[task(schedule = [task2])]
|
||||||
|
fn task1(_cx: task1::Context) {
|
||||||
|
_cx.schedule.task2(_cx.scheduled + 100.cycles()).ok();
|
||||||
|
}
|
||||||
|
|
||||||
|
#[task(schedule = [task1])]
|
||||||
|
fn task2(_cx: task2::Context) {
|
||||||
|
_cx.schedule.task1(_cx.scheduled + 100.cycles()).ok();
|
||||||
|
}
|
||||||
|
|
||||||
|
extern "C" {
|
||||||
|
fn SSI0();
|
||||||
|
}
|
||||||
|
};
|
Loading…
Reference in a new issue