Datasheet
Table Of Contents
- Getting started with Raspberry Pi Pico
- Colophon
- Chapter 1. Quick Pico Setup
- Chapter 2. The SDK
- Chapter 3. Blinking an LED in C
- Chapter 4. Saying "Hello World" in C
- Chapter 5. Flash Programming with SWD
- Chapter 6. Debugging with SWD
- Chapter 7. Using Visual Studio Code
- Chapter 8. Creating your own Project
- Chapter 9. Building on other platforms
- Chapter 10. Using other Integrated Development Environments
- Appendix A: Using Picoprobe
- Appendix B: Using Picotool
- Appendix C: Documentation Release History
Mac
brew install minicom
minicom -D /dev/tty.usbmodem1234561 -b 115200
Using Picoprobe with OpenOCD
Same for all platforms
src/openocd -f interface/picoprobe.cfg -f target/rp2040.cfg -s tcl
Connect GDB as you usually would with
target remote localhost:3333
Getting started with Raspberry Pi Pico
Using Picoprobe with OpenOCD 64