diff options
| author | Emil Fresk <emil.fresk@gmail.com> | 2021-03-03 09:22:45 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-03 09:22:45 +0100 |
| commit | 4714b8ee54d027ba6797731190a2368187a31c79 (patch) | |
| tree | 5941bf7613f9195b04793c1227c840b89995c970 /examples | |
| parent | 08a37d6d3d7e7f599c7d5b2723ed15d8355963d1 (diff) | |
| parent | 5e5fbf0ee9b254ec7d61f3f820168f11cb6a2c14 (diff) | |
Merge pull request #450 from AfoHT/testssingleonly
Cleanup of tests, solve duplicate panic handler error
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/big-struct-opt.rs | 2 | ||||
| -rw-r--r-- | examples/not-sync.rs | 2 | ||||
| -rw-r--r-- | examples/schedule.rs | 2 | ||||
| -rw-r--r-- | examples/t-binds.rs | 2 | ||||
| -rw-r--r-- | examples/t-cfg-resources.rs | 2 | ||||
| -rw-r--r-- | examples/t-cfg.rs | 2 | ||||
| -rw-r--r-- | examples/t-late-not-send.rs | 2 | ||||
| -rw-r--r-- | examples/t-resource.rs | 2 | ||||
| -rw-r--r-- | examples/t-schedule-core-stable.rs | 2 | ||||
| -rw-r--r-- | examples/t-schedule.rs | 2 | ||||
| -rw-r--r-- | examples/t-spawn.rs | 2 |
11 files changed, 11 insertions, 11 deletions
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 { |
