1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
Go to file
2022-09-20 11:24:12 +02:00
coap-chat coap-chat: update for gcoap change in 2019.10 release 2022-09-20 11:24:12 +02:00
RIOT@1b9ec8eef7 RIOT: update submodule to 2019.10 2022-09-20 11:24:12 +02:00
sniffer adapt RIOTBASE to use submodule path 2018-12-19 13:19:37 +01:00
spectrum-scanner spectrum-scanner: fix flake8 issues 2022-09-20 11:24:12 +02:00
.gitignore git: added .gitignore, copied from RIOT 2015-06-04 12:10:24 +02:00
.gitmodules add RIOT as a submodule 2018-12-19 13:19:37 +01:00
.travis.yml travis: notify maintainers via mail about builds 2022-09-20 11:24:12 +02:00
LICENSE add missing LICENSE 2019-01-09 08:50:16 +01:00
README.md Provide README 2022-09-20 11:24:12 +02:00

Build Status

RIOT Applications

This repository provides more applications for the RIOT operating system. Some of them are just useful tools for development work, others showcase more extensive implementations of features of RIOT compared to the rather simple examples in the RIOT main codebase.

Usage

To build and use them follow the instructions in the RIOT repository and the READMEs within the respective application directory.

The RIOT main code is included as a submodule. This always points to the latest release. To change the RIOT version to build against (e.g. current master), clone the RIOT repository in a separate repository and point the RIOTBASE environment variable there:

# assuming you are in the working directory of your local clone of this repo
cd ..
git clone git@github.com:RIOT-OS/RIOT.git
cd applications
RIOTBASE="../RIOT" BOARD=samr21-xpro make -C sniffer flash

Alternatively, you can step into the submodule and check out the current master:

cd RIOT
git checkout master
git pull

Note that there is no guarantee that it will build or work, since we only test this repository against the latest release.