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

https://github.com/akabe/docker-esp-idf

A Docker image for ESP-IDF application build environment
https://github.com/akabe/docker-esp-idf

Last synced: 5 months ago
JSON representation

A Docker image for ESP-IDF application build environment

Awesome Lists containing this project

README

          

# akabe/esp-idf

A Docker image for ESP-IDF application build environment

## Getting started

### Build

```sh
docker run -it --rm -v path/to/your/source:/src -w /src akabe/esp-idf idf.py build
```

### Flash (on Linux)

```sh
docker run -it --rm -v path/to/your/source:/src -w /src --device /dev/ttyUSB0 akabe/esp-idf idf.py -p /dev/ttyUSB0 flash
```