-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from perlindgren/panic-rtt-target-cs
panic-rtt-target with CS
- Loading branch information
Showing
5 changed files
with
54 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,19 +2,17 @@ | |
name = "panic-rtt-target" | ||
description = "Logs panic messages over RTT using rtt-target" | ||
version = "0.1.2" | ||
edition = "2018" | ||
edition = "2021" | ||
readme = "README.md" | ||
keywords = ["no-std", "embedded", "debugging", "rtt"] | ||
license = "MIT" | ||
license-file = "../LICENSE" | ||
authors = ["Matti Virkkunen <[email protected]>"] | ||
authors = [ | ||
"Matti Virkkunen <[email protected]>", | ||
"Per Lindgren <[email protected]>", | ||
] | ||
repository = "https://github.com/probe-rs/rtt-target" | ||
|
||
[dependencies] | ||
rtt-target = "0.4.0" | ||
|
||
# Platform specific stuff | ||
cortex-m = { version = "0.7.1", optional = true } | ||
|
||
[package.metadata.docs.rs] | ||
features = ["cortex-m"] | ||
critical-section = "1.1.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,9 @@ | |
name = "panic-test" | ||
version = "0.1.0" | ||
authors = ["Matti Virkkunen <[email protected]>"] | ||
edition = "2018" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
cortex-m-rt = "0.7" | ||
panic-rtt-target = { path = "../panic-rtt-target", features = ["cortex-m"] } | ||
panic-rtt-target = { path = "../panic-rtt-target" } | ||
rtt-target = { path = "../rtt-target" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters