aboutsummaryrefslogtreecommitdiff
path: root/examples/t-schedule-core-stable.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/t-schedule-core-stable.rs')
-rw-r--r--examples/t-schedule-core-stable.rs21
1 files changed, 0 insertions, 21 deletions
diff --git a/examples/t-schedule-core-stable.rs b/examples/t-schedule-core-stable.rs
deleted file mode 100644
index 98d42ce7..00000000
--- a/examples/t-schedule-core-stable.rs
+++ /dev/null
@@ -1,21 +0,0 @@
-//! [compile-pass] Check `schedule` code generation
-
-#![deny(unsafe_code)]
-#![deny(warnings)]
-#![no_main]
-#![no_std]
-
-use panic_semihosting as _;
-
-#[rtic::app(device = lm3s6965, dispatchers = [SSI0])]
-mod app {
- #[init]
- fn init(c: init::Context) -> (init::LateResources, init::Monotonics) {
- let _c: cortex_m::Peripherals = c.core;
-
- (init::LateResources {}, init::Monotonics())
- }
-
- #[task]
- fn some_task(_: some_task::Context) {}
-}