Created
July 14, 2019 20:35
-
-
Save bdmihai/e9743b57c631800b0b3225cefe188a4b to your computer and use it in GitHub Desktop.
Esp32 - vscode launch
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
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Debug", | |
"type": "gdb", | |
"request": "launch", | |
"target": "${workspaceFolder}/build/blink.elf", | |
"cwd": "${workspaceRoot}", | |
"gdbpath": "${env:HOME}/work/tools/xtensa-esp32-elf/bin/xtensa-esp32-elf-gdb", | |
"autorun": [ | |
"target remote :3333", | |
"mon reset halt", | |
"flushregs", | |
"thb app_main", | |
"c" | |
], | |
"valuesFormatting": "parseText" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment