picoprobeEnclosure
by rouderaa
This is an enclosure for a Raspberry Pi Pico that has been programmed to be used as a picoprobe. In this way you can do serial wire debugging. See https://github.com/raspberrypi/picoprobe for the details. If you use this probe with Visual Code then the following platformio.ini can be used: [env] platform = https://github.com/maxgerhardt/platform-raspberrypi.git framework = arduino ; uncomment this to use Arduino-Pico ; keep commented to use ArduinoCore-mbed (official RP2040 core) board_build.core = earlephilhower board_build.filesystem_size = 0.5m [env:pico] board = pico ; if using picoprobe SWD upload / debugging upload_protocol = picoprobe debug_init_break = tbreak setup debug_tool = picoprobe debug_build_flags = -O0 -ggdb3 -g3