This is a template for Lingua Franca applications targeting RIOT OS.
- Configure the name of the LF application you want to build inside the
Makefile
by specifying theLF_MAIN
variable. - Configure the board to flash in the
Makefile
by specifying theBOARD
variable.
LF_MAIN ?= HelloWorld
BOARD ?= native
make all
or with parameters to override the `Makefile configuration
LF_MAIN=HelloWorld BOARD=native make all
make flash
or with parameters to override the `Makefile configuration
LF_MAIN=HelloWorld BOARD=native make flash
This allows to run CLI commands if a CLI is enabled or seeing debug logs etc.
make term
or with parameters to override the `Makefile configuration
LF_MAIN=HelloWorld BOARD=native make term