From 6e793072c9a6c2a4c2932f8b1e43d0c2f1acffd5 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Thu, 21 Jan 2021 12:45:11 +0100 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Lotte Steenbrink --- embedded-workshop-book/src/gdb.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/embedded-workshop-book/src/gdb.md b/embedded-workshop-book/src/gdb.md index a73e9b3..361dec4 100644 --- a/embedded-workshop-book/src/gdb.md +++ b/embedded-workshop-book/src/gdb.md @@ -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" }