An open API service indexing awesome lists of open source software.

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.

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.