I have run PlatformIO and click new project.
Selected board to Raspberry Pi Pico and created.
Type in Blink source then click f5.
run build process then show the error message as attached image.
I want to bebug from source.
How do i fix this error message??.
Please let me know your help.
i click open ‘launch.json’ then show the code like below.
{
"version": "0.2.0",
"configurations": [
{
"type": "platformio-debug",
"request": "launch",
"name": "PIO Debug",
"executable": "c:/Users/h_note/Documents/PlatformIO/Projects/test_blink/.pio/build/pico/firmware.elf",
"projectEnvName": "pico",
"toolchainBinDir": "C:/Users/h_note/.platformio/packages/toolchain-gccarmnoneeabi/bin",
"internalConsoleOptions": "openOnSessionStart",
"svdPath": "C:/Users/h_note/.platformio/platforms/raspberrypi/misc/svd/rp2040.svd",
"preLaunchTask": {
"type": "PlatformIO",
"task": "Pre-Debug"
}
},
{
"type": "platformio-debug",
"request": "launch",
"name": "PIO Debug (skip Pre-Debug)",
"executable": "c:/Users/h_note/Documents/PlatformIO/Projects/test_blink/.pio/build/pico/firmware.elf",
"projectEnvName": "pico",
"toolchainBinDir": "C:/Users/h_note/.platformio/packages/toolchain-gccarmnoneeabi/bin",
"internalConsoleOptions": "openOnSessionStart",
"svdPath": "C:/Users/h_note/.platformio/platforms/raspberrypi/misc/svd/rp2040.svd"
},
{
"type": "platformio-debug",
"request": "launch",
"name": "PIO Debug (without uploading)",
"executable": "c:/Users/h_note/Documents/PlatformIO/Projects/test_blink/.pio/build/pico/firmware.elf",
"projectEnvName": "pico",
"toolchainBinDir": "C:/Users/h_note/.platformio/packages/toolchain-gccarmnoneeabi/bin",
"internalConsoleOptions": "openOnSessionStart",
"svdPath": "C:/Users/h_note/.platformio/platforms/raspberrypi/misc/svd/rp2040.svd",
"loadMode": "manual"
}
]
}