From a7977a9d995c2a271486c8ab0a98718312df2ddb Mon Sep 17 00:00:00 2001 From: Per Lindgren <per.lindgren@ltu.se> Date: Sun, 2 Feb 2020 22:14:19 +0100 Subject: [PATCH] polish --- .vscode/launch.json | 2 +- .vscode/tasks.json | 4 ++-- openocd.gdb | 5 ++++- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 7741da5..bbbc55a 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -125,7 +125,7 @@ "target/stm32f4x.cfg" ], "postLaunchCommands": [ - "monitor reset init", + "monitor reset init", // sets the MCU to 64MHz "monitor arm semihosting enable", "monitor tpiu config internal /tmp/itm.fifo uart off 64000000", "monitor itm port 0 on" diff --git a/.vscode/tasks.json b/.vscode/tasks.json index aa90589..42f4b03 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -9,7 +9,7 @@ "isDefault": true }, "problemMatcher": [ - "$rustc", + "$rustc" ] }, { @@ -21,7 +21,7 @@ "isDefault": true }, "problemMatcher": [ - "$rustc", + "$rustc" ] }, { diff --git a/openocd.gdb b/openocd.gdb index 3d73217..0e6f2af 100644 --- a/openocd.gdb +++ b/openocd.gdb @@ -37,5 +37,8 @@ monitor reset init load -# start the process but immediately halt the processor +# un-comment to start and immediately halt the processor stepi + +# un-comment to start and continue +# continue -- GitLab