esp32-lilygo-t5/.vscode/launch.json
2024-09-25 09:03:35 +02:00

15 lines
No EOL
377 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Wokwi GDB",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/esp32-c3-lua-test.elf",
"cwd": "${workspaceFolder}",
"MIMode": "gdb",
"miDebuggerPath": "${command:espIdf.getToolchainGdb}",
"miDebuggerServerAddress": "localhost:3333"
}
]
}