{ // 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": "Pico Debug (Cortex-Debug)", "cwd": "${workspaceRoot}", "executable": "${workspaceRoot}/.esphome/build/enviro-weather/.pioenvs/enviro-weather/firmware.elf", "request": "launch", "type": "cortex-debug", "servertype": "openocd", "device": "RP2040", "runToEntryPoint": "main", "configFiles": [ "interface/cmsis-dap.cfg", "target/rp2040.cfg" ], "openOCDLaunchCommands": [ "adapter speed 5000" ], "searchDir": ["/opt/openocd-rp2040/share/openocd/scripts"], "svdFile": "/workspaces/rp2040/pico-sdk/src/rp2040/hardware_regs/rp2040.svd", "gdbPath": "gdb-multiarch" }, { "name": "Pico Debug (Cortex-Debug with external OpenOCD)", "cwd": "${workspaceRoot}", "executable": "${workspaceRoot}/.esphome/build/enviro-weather/.pioenvs/enviro-weather/firmware.elf", "request": "launch", "type": "cortex-debug", "servertype": "external", "gdbTarget": "localhost:3333", "device": "RP2040", "runToEntryPoint": "main", "svdFile": "/workspaces/rp2040/pico-sdk/src/rp2040/hardware_regs/rp2040.svd", "showDevDebugOutput": "raw" }, ] }