https://github.com/rsta2/pico
Some small programs for the Raspberry Pi Pico
https://github.com/rsta2/pico
Last synced: over 1 year ago
JSON representation
Some small programs for the Raspberry Pi Pico
- Host: GitHub
- URL: https://github.com/rsta2/pico
- Owner: rsta2
- License: other
- Created: 2021-11-21T17:05:51.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-10T06:15:46.000Z (almost 2 years ago)
- Last Synced: 2024-10-18T05:10:40.570Z (over 1 year ago)
- Language: C
- Size: 31.3 KB
- Stars: 45
- Watchers: 5
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Pico
====
> Raspberry Pi is a trademark of Raspberry Pi Ltd.
Overview
--------
Some small programs for the Raspberry Pi Pico.
Pico W and Pico 2 have not been tested with these programs. The LED is not
working on the Pico W with them.
Programs
--------
| Directory | Description |
|--------------------|----------------------------------------------------------|
| dummy_flash/ | to be installed in the flash for the RAM loader |
| midi_adapter/ | USB to serial MIDI adapter (converter) |
| midi_adapter_flex/ | Configurable USB to serial MIDI adapter |
| spi_slave_pio/ | SPI slave, which is compatible with the Raspberry Pi 0-4 |
Building
--------
```
export PICO_SDK_PATH=/absolute/path/to/pico-sdk
export PICOTOOL_FETCH_FROM_GIT_PATH=/absolute/path/to/a/temp/directory
export PICO_BOARD=pico # or pico_w, pico2
mkdir build
cd build
cmake ..
make
```