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