https://github.com/itis-enrico-fermi/picobringup
Raspberry Pi Pico bringup project, for the C/C++ SDK. Examples for CMake, Visual Studio Code and various programming and debugging techniques.
https://github.com/itis-enrico-fermi/picobringup
Last synced: about 2 months ago
JSON representation
Raspberry Pi Pico bringup project, for the C/C++ SDK. Examples for CMake, Visual Studio Code and various programming and debugging techniques.
- Host: GitHub
- URL: https://github.com/itis-enrico-fermi/picobringup
- Owner: ITIS-Enrico-Fermi
- Created: 2023-03-21T17:32:41.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-08-12T15:42:42.000Z (over 1 year ago)
- Last Synced: 2025-01-21T10:09:42.685Z (3 months ago)
- Language: C
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PicoBringup
Examples for Raspberry Pi Pico applications, using the Pico C SDK.
## Prepare environment
```
mkdir build
cd build
cmake ..
```## Compile
In `build` directory:
```
make
```## Flash
```
make flash
```N.B. this command uses the custom cmake extension `pico_flash_uf2.cmake`, provided with this repository.
Adjust the command to account for your Raspberry Pi mount directory when in UF2 mode, or use other protocols
for chip flashing.