Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/brooksprumo/docker-zephyr

Docker images for Zephyr RTOS
https://github.com/brooksprumo/docker-zephyr

docker docker-images zephyr-rtos

Last synced: about 10 hours ago
JSON representation

Docker images for Zephyr RTOS

Awesome Lists containing this project

README

        

# Docker images for [Zephyr RTOS](https://www.zephyrproject.org/)

Branches correspond to Zephyr releases.

## Building the image

Simple! Just call `make`.

## Using the image to build a Zephyr app

To build a Zephyr application, run:

```
docker run --rm -it brooksp/zephyr bash
```

then

```
cd /zephyrproject/zephyr
west build -p auto --board nrf52840dk_nrf52840 samples/basic/blinky
```