Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arduino/rp2040tools
https://github.com/arduino/rp2040tools
arduino rp2040
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/arduino/rp2040tools
- Owner: arduino
- Created: 2021-02-25T12:09:40.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-03-19T04:56:21.000Z (8 months ago)
- Last Synced: 2024-09-29T08:50:27.499Z (about 2 months ago)
- Topics: arduino, rp2040
- Language: Go
- Homepage:
- Size: 18.9 MB
- Stars: 23
- Watchers: 14
- Forks: 5
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rp2040tools
[![Check Go status](https://github.com/arduino/rp2040tools/actions/workflows/check-go-task.yml/badge.svg)](https://github.com/arduino/rp2040tools/actions/workflows/check-go-task.yml)
[![Check Markdown status](https://github.com/arduino/rp2040tools/actions/workflows/check-markdown-task.yml/badge.svg)](https://github.com/arduino/rp2040tools/actions/workflows/check-markdown-task.yml)
[![Check Prettier Formatting status](https://github.com/arduino/rp2040tools/actions/workflows/check-prettier-formatting-task.yml/badge.svg)](https://github.com/arduino/rp2040tools/actions/workflows/check-prettier-formatting-task.yml)
[![Check Taskfiles status](https://github.com/arduino/rp2040tools/actions/workflows/check-taskfiles.yml/badge.svg)](https://github.com/arduino/rp2040tools/actions/workflows/check-taskfiles.yml)
[![Sync Labels status](https://github.com/arduino/rp2040tools/actions/workflows/sync-labels.yml/badge.svg)](https://github.com/arduino/rp2040tools/actions/workflows/sync-labels.yml)This repo contains all the tools used by Arduino to upload compiled code to the boards that use the rp2040 processor.
## Tools
- [**picotool**](https://github.com/raspberrypi/picotool): a tool for interacting with a RP2040 device in BOOTSEL mode, or with a RP2040 binary
- [**elf2uf2**](https://github.com/raspberrypi/pico-sdk/tree/master/tools/elf2uf2): a tool to convert binary format
- **rp2040load** is a go tool which orchestrates the other two
- [**pioasm**](https://github.com/raspberrypi/pico-sdk/tree/master/tools/pioasm)## CI
The CI is responsible for building and uploading the tools
The [release workflow](https://github.com/arduino/rp2040tools/blob/master/.github/workflows/release.yml) is divided in:- a job which uses a docker container (called crossbuild) with all the toolchains inside required to cross-compile the tools from raspberry pi. The binaries produced are as static and self-contained as possible.
- a job that cross-compiles the go tool called rp2040load.
- one last job used to move in the correct folders the binaries and to `tar.bz2` them and upload them in the [github release page](https://github.com/arduino/rp2040tools/releases) and on s3 download server.