diff options
author | Brian Cully <bjc@kublai.com> | 2022-10-25 15:16:25 -0400 |
---|---|---|
committer | Brian Cully <bjc@kublai.com> | 2022-10-25 15:16:25 -0400 |
commit | 4dc2d0ce0d16b1f173483df0a457e60e93fb1ab1 (patch) | |
tree | 877338afb0e07e35e24810696b39e413fd0f9770 | |
parent | 6c356bf4782b60619216eaf6309787a0ddf49d2c (diff) | |
download | luchie-4dc2d0ce0d16b1f173483df0a457e60e93fb1ab1.tar.gz luchie-4dc2d0ce0d16b1f173483df0a457e60e93fb1ab1.zip |
remove panic-semihosting
i'm using a custom panic impl that logs to uart1
-rw-r--r-- | Cargo.lock | 20 | ||||
-rw-r--r-- | Cargo.toml | 2 |
2 files changed, 1 insertions, 21 deletions
@@ -73,15 +73,6 @@ dependencies = [ ] [[package]] -name = "cortex-m-semihosting" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c23234600452033cc77e4b761e740e02d2c4168e11dbf36ab14a0f58973592b0" -dependencies = [ - "cortex-m", -] - -[[package]] name = "embedded-dma" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -136,7 +127,6 @@ dependencies = [ "cortex-m-rt", "embedded-hal", "nb 1.0.0", - "panic-semihosting", "stm32f1xx-hal", "usb-device", "usbd-serial", @@ -159,16 +149,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "546c37ac5d9e56f55e73b677106873d9d9f5190605e41a856503623648488cae" [[package]] -name = "panic-semihosting" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee8a3e1233d9073d76a870223512ce4eeea43c067a94a445c13bd6d792d7b1ab" -dependencies = [ - "cortex-m", - "cortex-m-semihosting", -] - -[[package]] name = "paste" version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -20,7 +20,7 @@ codegen-units = 1 cortex-m = "0.7.6" cortex-m-rt = "0.7.1" nb = "1.0.0" -panic-semihosting = "0.6.0" +#panic-semihosting = "0.6.0" usb-device = "0.2.9" usbd-serial = "0.1.1" usbd-webusb = "1.0.2" |