aboutsummaryrefslogtreecommitdiff
path: root/mc/examples/x-schedule.rs
diff options
context:
space:
mode:
Diffstat (limited to 'mc/examples/x-schedule.rs')
-rw-r--r--mc/examples/x-schedule.rs36
1 files changed, 0 insertions, 36 deletions
diff --git a/mc/examples/x-schedule.rs b/mc/examples/x-schedule.rs
deleted file mode 100644
index 76e70acf..00000000
--- a/mc/examples/x-schedule.rs
+++ /dev/null
@@ -1,36 +0,0 @@
-#![no_main]
-#![no_std]
-
-use panic_halt as _;
-
-#[rtfm::app(cores = 2, device = mc, monotonic = mc::MT)]
-const APP: () = {
- #[init(core = 0, spawn = [ping])]
- fn init(c: init::Context) {
- c.spawn.ping().ok();
- }
-
- #[task(core = 0, schedule = [ping])]
- fn pong(c: pong::Context) {
- c.schedule.ping(c.scheduled + 1_000_000).ok();
- }
-
- #[task(core = 1, schedule = [pong])]
- fn ping(c: ping::Context) {
- c.schedule.pong(c.scheduled + 1_000_000).ok();
- }
-
- extern "C" {
- #[core = 0]
- fn I0();
-
- #[core = 0]
- fn I1();
-
- #[core = 1]
- fn I0();
-
- #[core = 1]
- fn I1();
- }
-};