diff options
author | 2018-09-17 23:38:18 +0200 | |
---|---|---|
committer | 2018-09-18 00:59:48 +0200 | |
commit | 85ba898dc80d14dc35dd21abab7684bb1ea0f4c8 (patch) | |
tree | 19d86d946830004eba84c4767217e4d99c697359 /cortex-m-rt/examples/data_overflow.rs | |
parent | 98ce8a1f5d30e3c5c421c0e9c19c078cea7c0473 (diff) | |
download | cortex-m-85ba898dc80d14dc35dd21abab7684bb1ea0f4c8.tar.gz cortex-m-85ba898dc80d14dc35dd21abab7684bb1ea0f4c8.tar.zst cortex-m-85ba898dc80d14dc35dd21abab7684bb1ea0f4c8.zip |
use panic-halt instead of panic-{abort,semihosting}
the former requires a feature gate; the later pulls in the cortex-m crate
Diffstat (limited to 'cortex-m-rt/examples/data_overflow.rs')
-rw-r--r-- | cortex-m-rt/examples/data_overflow.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cortex-m-rt/examples/data_overflow.rs b/cortex-m-rt/examples/data_overflow.rs index ceec18b..ea48b23 100644 --- a/cortex-m-rt/examples/data_overflow.rs +++ b/cortex-m-rt/examples/data_overflow.rs @@ -6,7 +6,7 @@ #![no_std] extern crate cortex_m_rt as rt; -extern crate panic_abort; +extern crate panic_halt; use core::ptr; |