bakalarka/.vscode/launch.json

19 lines
536 B
JSON
Raw Normal View History

2020-04-01 00:09:45 +00:00
{
"version": "0.2.0",
"configurations": [
{
"type": "cppdbg",
"request": "launch",
"name": "ESP-IDF: Debug",
"miDebuggerPath": "xtensa-esp32-elf-gdb",
"program": "./build/bakalarka.elf",
"miDebuggerServerAddress": ":3333",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb"
},
]
}