This repository was archived by the owner on Sep 20, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change 1+ [ ![ Build Status] ( https://travis-ci.org/RIOT-OS/applications.svg?branch=master )] ( https://travis-ci.org/RIOT-OS/applications )
2+
3+ # RIOT Applications
4+
5+ This repository provides more applications for the [ RIOT operating system] [ riot-repo ] .
6+ Some of them are just useful tools for development work, others showcase
7+ more extensive implementations of features of RIOT compared to the rather simple
8+ [ examples in the RIOT main codebase] [ riot-repo/examples ] .
9+
10+ ## Usage
11+
12+ To build and use them follow [ the instructions in the RIOT repository] [ getting-started ]
13+ and the READMEs within the respective application directory.
14+
15+ The RIOT main code is included as a submodule. This always points to the latest
16+ release. To change the RIOT version to build against (e.g. current master),
17+ clone the RIOT repository in a separate repository and point the ` RIOTBASE `
18+ environment variable there:
19+
20+ ``` sh
21+ # assuming you are in the working directory of your local clone of this repo
22+ cd ..
23+ git clone
[email protected] :RIOT-OS/RIOT.git
24+ cd applications
25+ RIOTBASE=" ../RIOT" BOARD=samr21-xpro make -C sniffer flash
26+ ```
27+
28+ Alternatively, you can step into the submodule and check out the current master:
29+
30+ ``` sh
31+ cd RIOT
32+ git checkout master
33+ git pull
34+ ```
35+
36+ Note that there is no guarantee that it will build or work, since we only test
37+ this repository against the latest release.
38+
39+ [ riot-repo ] : https://github.com/RIOT-OS/RIOT
40+ [ riot-repo/examples ] : https://github.com/RIOT-OS/RIOT/tree/master/examples
41+ [ getting-started ] : https://github.com/RIOT-OS/RIOT/blob/master/README.md#getting-started
You can’t perform that action at this time.
0 commit comments