项目作者: RIOT-OS

项目描述 :
Some useful RIOT applications
高级语言: C
项目地址: git://github.com/RIOT-OS/applications.git
创建时间: 2014-11-06T21:26:12Z
项目社区:https://github.com/RIOT-OS/applications

开源协议:GNU Lesser General Public License v2.1

下载


Archival notice

The applications that resided in this repository have been moved into RIOT.
Please see the examples inside RIOT to find both these and other applications.

The repository is left online only for documentation of the applications’ history.


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:

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

Alternatively you can use RIOT as a submodule. To initialize the submodule, from the
root of the repository run:

  1. git submodule update --init --recursive

If you want to use master then simply step into the submodule and checkout master or
any other desired branch.

  1. cd RIOT
  2. git checkout master
  3. git pull

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