{ "version": "0.2.0", "configurations": [ { "type": "gdbtarget", "request": "attach", "name": "Eclipse CDT GDB Adapter" }, { "type": "espidf", "name": "Launch", "request": "launch" }, { "name": "Debug LVGL demo with gdb", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/build/rgb_lcd", "args": [], "cwd": "${workspaceFolder}", "stopAtEntry": false, "linux": { "MIMode": "gdb", "miDebuggerPath": "/usr/bin/gdb" }, "osx": { "MIMode": "lldb" }, "windows": { "MIMode": "gdb", "miDebuggerPath": "C:\\MinGw\\bin\\gdb.exe" } }, ] }