Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/platformio/platform-raspberrypi
Raspberry Pi: development platform for PlatformIO
https://github.com/platformio/platform-raspberrypi
arduino mbed-os platformio platformio-platform raspberry-pi-pico rpi-pico
Last synced: 3 days ago
JSON representation
Raspberry Pi: development platform for PlatformIO
- Host: GitHub
- URL: https://github.com/platformio/platform-raspberrypi
- Owner: platformio
- License: apache-2.0
- Created: 2021-04-22T12:38:21.000Z (over 3 years ago)
- Default Branch: develop
- Last Pushed: 2024-11-29T16:10:35.000Z (25 days ago)
- Last Synced: 2024-12-14T08:06:26.179Z (10 days ago)
- Topics: arduino, mbed-os, platformio, platformio-platform, raspberry-pi-pico, rpi-pico
- Language: Python
- Homepage: https://registry.platformio.org/platforms/platformio/raspberrypi
- Size: 165 KB
- Stars: 73
- Watchers: 9
- Forks: 98
- Open Issues: 45
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Raspberry Pi RP2040: development platform for [PlatformIO](https://platformio.org)
[![Build Status](https://github.com/platformio/platform-raspberrypi/workflows/Examples/badge.svg)](https://github.com/platformio/platform-raspberrypi/actions)
RP2040 is a low-cost, high-performance microcontroller device with a large on-chip memory, symmetric dual-core processor complex, deterministic bus fabric, and rich peripheral set augmented with a unique Programmable I/O (PIO) subsystem, it provides professional users with unrivalled power and flexibility.
* [Home](https://registry.platformio.org/platforms/platformio/raspberrypi) (home page in the PlatformIO Registry)
* [Documentation](https://docs.platformio.org/page/platforms/raspberrypi.html) (advanced usage, packages, boards, frameworks, etc.)# Usage
1. [Install PlatformIO](https://platformio.org)
2. Create PlatformIO project and configure a platform option in [platformio.ini](https://docs.platformio.org/page/projectconf.html) file:## Stable version
```ini
[env:stable]
platform = raspberrypi
board = ...
...
```## Development version
```ini
[env:development]
platform = https://github.com/platformio/platform-raspberrypi.git
board = ...
...
```# Configuration
Please navigate to [documentation](https://docs.platformio.org/page/platforms/raspberrypi.html).