diff options
author | 2021-07-07 22:50:59 +0200 | |
---|---|---|
committer | 2021-07-07 23:07:09 +0200 | |
commit | 98d2af9d73da56910c8bb6cb662fbc4d609a704a (patch) | |
tree | 46914250a980b9164b2d20cbeb08e126a86cf7ea /examples/t-schedule-core-stable.rs | |
parent | 633012190baa0801efc7e3ab2f699778c5038d54 (diff) | |
download | rtic-98d2af9d73da56910c8bb6cb662fbc4d609a704a.tar.gz rtic-98d2af9d73da56910c8bb6cb662fbc4d609a704a.tar.zst rtic-98d2af9d73da56910c8bb6cb662fbc4d609a704a.zip |
Fixing tests
Diffstat (limited to 'examples/t-schedule-core-stable.rs')
-rw-r--r-- | examples/t-schedule-core-stable.rs | 21 |
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) {} -} |