mirror of
https://github.com/ferrous-systems/embedded-trainings-2020.git
synced 2024-11-10 18:51:02 +00:00
Apply suggestions from code review
Co-authored-by: Lotte Steenbrink <lotte.steenbrink@ferrous-systems.com>
This commit is contained in:
parent
2411cd4e62
commit
6e793072c9
1 changed files with 3 additions and 2 deletions
|
@ -17,14 +17,15 @@ the GDB server.
|
|||
|
||||
1. You'll need to install OpenOCD. Installation instructions vary depending on your OS.
|
||||
|
||||
2. Install the cortex-debug extension in VS code. Head to the extensions marketplace and search for
|
||||
2. Install the [cortex-debug](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug) extension in VS code. Head to the extensions marketplace and search for
|
||||
"cortex-debug". Latest version at the time of writing is 0.3.7 and the author of the extension is
|
||||
"marus25"
|
||||
|
||||
## Preparation
|
||||
|
||||
For the best debugging experience, the `dev` (development) compilation profile should be set to its
|
||||
default settings. Modify `beginner/apps/Cargo.toml` to revert the `dev` profile to its default.
|
||||
default settings.
|
||||
For this tutorial, we'll be using the `beginner/` applications, so let's modify `beginner/apps/Cargo.toml` to revert the `dev` profile to its default.
|
||||
|
||||
``` diff
|
||||
panic-log = { path = "../../common/panic-log" }
|
||||
|
|
Loading…
Reference in a new issue