Skip to content
Snippets Groups Projects
Commit 8008f696 authored by Tim Docker's avatar Tim Docker
Browse files

Switch to using panic-itm

parent f80511a4
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,7 @@ dependencies = [ ...@@ -16,7 +16,7 @@ dependencies = [
"cortex-m 0.5.7 (registry+https://github.com/rust-lang/crates.io-index)", "cortex-m 0.5.7 (registry+https://github.com/rust-lang/crates.io-index)",
"cortex-m-rt 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", "cortex-m-rt 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
"embedded-hal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "embedded-hal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"panic-abort 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "panic-itm 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"stm32f407g-disc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "stm32f407g-disc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
] ]
...@@ -70,9 +70,12 @@ version = "0.1.1" ...@@ -70,9 +70,12 @@ version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]] [[package]]
name = "panic-abort" name = "panic-itm"
version = "0.3.1" version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"cortex-m 0.5.7 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]] [[package]]
name = "proc-macro2" name = "proc-macro2"
...@@ -186,7 +189,7 @@ dependencies = [ ...@@ -186,7 +189,7 @@ dependencies = [
"checksum cortex-m-rt-macros 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3139fdadccaa0db6fa96637678ced9b0b97e4f10047c9ab603d125048e107d1a" "checksum cortex-m-rt-macros 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3139fdadccaa0db6fa96637678ced9b0b97e4f10047c9ab603d125048e107d1a"
"checksum embedded-hal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "26944677e4934eb5fb4025501dc0d6cdbcf6bfabd6200fcfee2e7e8eef8c0362" "checksum embedded-hal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "26944677e4934eb5fb4025501dc0d6cdbcf6bfabd6200fcfee2e7e8eef8c0362"
"checksum nb 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "69f380b5fe9fab8c0d7a6a99cda23e2cc0463bedb2cbc3aada0813b98496ecdc" "checksum nb 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "69f380b5fe9fab8c0d7a6a99cda23e2cc0463bedb2cbc3aada0813b98496ecdc"
"checksum panic-abort 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2c14a66511ed17b6a8b4256b868d7fd207836d891db15eea5195dbcaf87e630f" "checksum panic-itm 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d2f8558d6f59b9d74b4c34588604b7d9382060218abd5ec3fc01157c97838666"
"checksum proc-macro2 0.4.19 (registry+https://github.com/rust-lang/crates.io-index)" = "ffe022fb8c8bd254524b0b3305906c1921fa37a84a644e29079a9e62200c3901" "checksum proc-macro2 0.4.19 (registry+https://github.com/rust-lang/crates.io-index)" = "ffe022fb8c8bd254524b0b3305906c1921fa37a84a644e29079a9e62200c3901"
"checksum quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)" = "dd636425967c33af890042c483632d33fa7a18f19ad1d7ea72e8998c6ef8dea5" "checksum quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)" = "dd636425967c33af890042c483632d33fa7a18f19ad1d7ea72e8998c6ef8dea5"
"checksum r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2a38df5b15c8d5c7e8654189744d8e396bddc18ad48041a500ce52d6948941f" "checksum r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2a38df5b15c8d5c7e8654189744d8e396bddc18ad48041a500ce52d6948941f"
......
...@@ -36,5 +36,5 @@ version = "0.5.7" ...@@ -36,5 +36,5 @@ version = "0.5.7"
[dependencies.cortex-m-rt] [dependencies.cortex-m-rt]
version = "0.6.4" version = "0.6.4"
[dependencies.panic-abort] [dependencies.panic-itm]
version = "0.3.1" version = "0.4.0"
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
extern crate cortex_m; extern crate cortex_m;
extern crate cortex_m_rt; extern crate cortex_m_rt;
extern crate panic_abort; extern crate panic_itm;
extern crate stm32f407g_disc as board; extern crate stm32f407g_disc as board;
extern crate embedded_hal as hal; extern crate embedded_hal as hal;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment