Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/nigh/pico-sdk-docker

a docker version sdk for Raspberry Pi Pico
https://github.com/nigh/pico-sdk-docker

docker pico raspberry-pi raspberry-pi-pico sdk

Last synced: 7 days ago
JSON representation

a docker version sdk for Raspberry Pi Pico

Awesome Lists containing this project

README

        

# pico-sdk-docker
a docker version sdk for Raspberry Pi Pico

## Usage

First, you should pull the image.

```bash
docker pull xianii/pico-sdk:latest
```

Then, visit the [example project](https://github.com/Nigh/pico-docker-example) and follow the instructions.

## Build

> [!WARNING]
> Follow the steps below only if you want to build the image locally.

The build uses [chsrc](https://github.com/RubyMetric/chsrc) to speed up apt. In case you want to specific a mirror, visit the chsrc repo for the avaliable mirror list.

```bash
# set apt source mirror with speedtest (default)
docker build -t pico-sdk .
# specific a mirror
docker build -t pico-sdk --build-arg MIRROR=ustc .
# without mirror
docker build -t pico-sdk --build-arg MIRROR=none .
```