aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml1
-rw-r--r--examples/big-struct-opt.rs2
-rw-r--r--examples/not-sync.rs2
-rw-r--r--examples/schedule.rs2
-rw-r--r--examples/t-binds.rs2
-rw-r--r--examples/t-cfg-resources.rs2
-rw-r--r--examples/t-cfg.rs2
-rw-r--r--examples/t-late-not-send.rs2
-rw-r--r--examples/t-resource.rs2
-rw-r--r--examples/t-schedule-core-stable.rs2
-rw-r--r--examples/t-schedule.rs2
-rw-r--r--examples/t-spawn.rs2
12 files changed, 11 insertions, 12 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 12b25c4..dd4633b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -68,7 +68,6 @@ version_check = "0.9"
[dev-dependencies]
lm3s6965 = "0.1.3"
-panic-halt = "0.2.0"
cortex-m-semihosting = "0.3.3"
[dev-dependencies.panic-semihosting]
diff --git a/examples/big-struct-opt.rs b/examples/big-struct-opt.rs
index dc6e72f..e6a5c17 100644
--- a/examples/big-struct-opt.rs
+++ b/examples/big-struct-opt.rs
@@ -6,7 +6,7 @@
#![no_main]
#![no_std]
-use panic_halt as _;
+use panic_semihosting as _;
/// Some big struct
pub struct BigStruct {
diff --git a/examples/not-sync.rs b/examples/not-sync.rs
index 8189da5..f01d404 100644
--- a/examples/not-sync.rs
+++ b/examples/not-sync.rs
@@ -6,7 +6,7 @@
#![no_std]
use core::marker::PhantomData;
-use panic_halt as _;
+use panic_semihosting as _;
pub struct NotSync {
_0: PhantomData<*const ()>,
diff --git a/examples/schedule.rs b/examples/schedule.rs
index cdbdc0d..d6d4499 100644
--- a/examples/schedule.rs
+++ b/examples/schedule.rs
@@ -5,7 +5,7 @@
#![no_main]
#![no_std]
-use panic_halt as _;
+use panic_semihosting as _;
// NOTE: does NOT work on QEMU!
#[rtic::app(device = lm3s6965, dispatchers = [SSI0])]
diff --git a/examples/t-binds.rs b/examples/t-binds.rs
index 60afa35..fbc89e8 100644
--- a/examples/t-binds.rs
+++ b/examples/t-binds.rs
@@ -5,7 +5,7 @@
#![no_main]
#![no_std]
-use panic_halt as _;
+use panic_semihosting as _;
#[rtic::app(device = lm3s6965)]
mod app {
diff --git a/examples/t-cfg-resources.rs b/examples/t-cfg-resources.rs
index 990b01f..1adcb90 100644
--- a/examples/t-cfg-resources.rs
+++ b/examples/t-cfg-resources.rs
@@ -3,7 +3,7 @@
#![no_main]
#![no_std]
-use panic_halt as _;
+use panic_semihosting as _;
#[rtic::app(device = lm3s6965)]
mod app {
diff --git a/examples/t-cfg.rs b/examples/t-cfg.rs
index ff06ee8..ef591c4 100644
--- a/examples/t-cfg.rs
+++ b/examples/t-cfg.rs
@@ -3,7 +3,7 @@
#![no_main]
#![no_std]
-use panic_halt as _;
+use panic_semihosting as _;
#[rtic::app(device = lm3s6965, dispatchers = [SSI0, QEI0])]
mod app {
diff --git a/examples/t-late-not-send.rs b/examples/t-late-not-send.rs
index dae0aa9..579f843 100644
--- a/examples/t-late-not-send.rs
+++ b/examples/t-late-not-send.rs
@@ -5,7 +5,7 @@
use core::marker::PhantomData;
-use panic_halt as _;
+use panic_semihosting as _;
pub struct NotSend {
_0: PhantomData<*const ()>,
diff --git a/examples/t-resource.rs b/examples/t-resource.rs
index 164ea84..6e83069 100644
--- a/examples/t-resource.rs
+++ b/examples/t-resource.rs
@@ -5,7 +5,7 @@
#![no_main]
#![no_std]
-use panic_halt as _;
+use panic_semihosting as _;
#[rtic::app(device = lm3s6965)]
mod app {
diff --git a/examples/t-schedule-core-stable.rs b/examples/t-schedule-core-stable.rs
index adcc0b6..98d42ce 100644
--- a/examples/t-schedule-core-stable.rs
+++ b/examples/t-schedule-core-stable.rs
@@ -5,7 +5,7 @@
#![no_main]
#![no_std]
-use panic_halt as _;
+use panic_semihosting as _;
#[rtic::app(device = lm3s6965, dispatchers = [SSI0])]
mod app {
diff --git a/examples/t-schedule.rs b/examples/t-schedule.rs
index 259b226..bd0ab66 100644
--- a/examples/t-schedule.rs
+++ b/examples/t-schedule.rs
@@ -5,7 +5,7 @@
#![no_main]
#![no_std]
-use panic_halt as _;
+use panic_semihosting as _;
#[rtic::app(device = lm3s6965, dispatchers = [SSI0])]
mod app {
diff --git a/examples/t-spawn.rs b/examples/t-spawn.rs
index cc7754e..ca5c61b 100644
--- a/examples/t-spawn.rs
+++ b/examples/t-spawn.rs
@@ -5,7 +5,7 @@
#![no_main]
#![no_std]
-use panic_halt as _;
+use panic_semihosting as _;
#[rtic::app(device = lm3s6965, dispatchers = [SSI0])]
mod app {