Error: Raspberry Pi Pico and RP2040 - C/C++ Part 2: Debugging with VS Code

The installation instructions for the picoprobe target are incomplete

The clone command in the existing instruction is:

$ git clone https://github.com/raspberrypi/picoprobe.git

But the repo contains two submodules freertos and CMSIS_5 that will not be populated using the above clone command. You can recover but it takes some fooling around and extra instructions.

My preferred edit would be to use the following clone command which will populate submodules.

$ git clone --recurse-submodules https://github.com/raspberrypi/picoprobe.git

Cloning with submodule population will allow the rest of the instructions to be complete.

@kevin_2332 who is best on your team to update: https://www.digikey.com/en/maker/projects/raspberry-pi-pico-and-rp2040-cc-part-2-debugging-with-vs-code/470abc7efb07432b82c95f6f67f184c0

Thanks!

1 Like

Hi milhead,
Thanks for bringing this to our attention. The project instructions should be updated soon.