The Raspberry Pi Pico using the Cortex-M0+
To replicate the example in this section, you will be using the following:
Platform |
The Raspberry Pi Pico |
Software |
hello world |
Environment |
Raspberry Pi 4 |
Host OS |
Linux (Ubuntu) |
Compiler |
GCC |
IDE |
OpenOCD |
The foundation of software development in C on the Raspberry Pi Pico is the Pico SDK. It provides header files and libraries to enable simple access to all the Pico hardware. Running a C program on the Pico is both similar to and different from running hello world on Windows, Linux, or macOS. The main similarity is that the C programs created with the Pico SDK also start with a main...