aboutsummaryrefslogtreecommitdiff
path: root/examples/t-stask-main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/t-stask-main.rs')
-rw-r--r--examples/t-stask-main.rs23
1 files changed, 0 insertions, 23 deletions
diff --git a/examples/t-stask-main.rs b/examples/t-stask-main.rs
deleted file mode 100644
index cfc93425..00000000
--- a/examples/t-stask-main.rs
+++ /dev/null
@@ -1,23 +0,0 @@
-#![deny(unsafe_code)]
-#![deny(warnings)]
-#![no_main]
-#![no_std]
-
-use panic_semihosting as _;
-
-#[rtic::app(device = lm3s6965, dispatchers = [SSI0])]
-mod app {
- use cortex_m_semihosting::debug;
-
- #[init]
- fn init(_: init::Context) -> (init::LateResources, init::Monotonics) {
- taskmain::spawn().ok();
-
- (init::LateResources {}, init::Monotonics())
- }
-
- #[task]
- fn taskmain(_: taskmain::Context) {
- debug::exit(debug::EXIT_SUCCESS);
- }
-}