Skip to content

Instantly share code, notes, and snippets.

@bdmihai
Created July 14, 2019 20:35
Show Gist options
  • Save bdmihai/e9743b57c631800b0b3225cefe188a4b to your computer and use it in GitHub Desktop.
Save bdmihai/e9743b57c631800b0b3225cefe188a4b to your computer and use it in GitHub Desktop.
Esp32 - vscode launch
{
// 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