https://github.com/ultraembedded/rp2040_blinky
Simple blinky example for the RP2040 that does not require cmake
https://github.com/ultraembedded/rp2040_blinky
Last synced: 12 months ago
JSON representation
Simple blinky example for the RP2040 that does not require cmake
- Host: GitHub
- URL: https://github.com/ultraembedded/rp2040_blinky
- Owner: ultraembedded
- License: bsd-3-clause
- Created: 2021-04-26T22:30:10.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-04-26T22:37:32.000Z (about 5 years ago)
- Last Synced: 2025-03-01T10:25:06.251Z (over 1 year ago)
- Language: C++
- Size: 16.6 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rp2040_blinky
Simple blinky example for the RP2040 that does not require cmake.
### Usage
```
# Acquire official RP2040 SDK
git clone https://github.com/raspberrypi/pico-sdk.git
# Set PICO_SDK_PATH to wherever you cloned the PICO SDK to
export PICO_SDK_PATH=/path/to/pico-SDK
# Build the blinky example
cd rp2040_blinky
make
# Copy test.uf2 to the RP2040 in the usual manner
```