Closed jdbruner closed 2 months ago
Have you enabled the useCmakeTools
setting for the extension or in your workspace?
Yes, I was using useCmakeTools
(so I could debug multiple executables in the same project, as I noted in #68), and I see from the PR that that was relevant. Sorry I didn't mention it initially. Anyway, thanks for the fix.
Attempting to debug with openocd on Windows fails, because the launch configuration in
launch.json
contains this:On Windows,
launchTargetPath
is delimited by backslashes - which are interpreted as escape sequences, so the load command fails (file not found).A workaround is to delete this (assuming the image is going into flash). An alternative workaround is to use the command variable extension and replace the backslashes with forward slashes.