-
Notifications
You must be signed in to change notification settings - Fork 2k
Quick Start Guide
Ludwig Ortmann edited this page May 13, 2014
·
3 revisions
git clone git://github.com/RIOT-OS/RIOT
Go to RIOT-Platforms, follow the links for your board/platform and install the toolchain you need. The easiest path is to use the virtual native
board (build dependencies).
RIOT is like a set of libraries for your application, therefore you can't build RIOT on its own. RIOT comes with some example applications. Build and run hello-world to see if everything works:
cd RIOT/examples/hello-world
make -B clean all
make flash
make term
Press ctrl+c
to exit.