ud3tn/config.mk.example
Felix Walter 0ce4bee910
Initial import of uPCN v0.8.0 source code
This is the initial commit for uD3TN. uD3TN is a fork of uPCN v0.8.0,
which will be developed and maintained in a public Git repository.

For questions concerning the history of and code provided with uPCN,
please get in touch with us via: contact <at> d3tn <dot> com

Signed-off-by: Felix Walter <felix.walter@d3tn.com>
2020-11-14 11:56:40 +01:00

34 lines
1.2 KiB
Text

# Example for Makefile configuration options
# Copy this to config.mk and either download the required software packages
# and extract them to an arbitrary directory or install them
# with your package manager. The variables show the defaults applied by the
# build system automatically.
# Toolchain to be used. `gcc` or `clang` can be selected
#TOOLCHAIN := gcc
# ARM toolchain prefix for arm-none-eabi target
# see https://launchpad.net/gcc-arm-embedded/+download
#TOOLCHAIN_STM32 := /usr/bin/arm-none-eabi-
# Toolchain prefix for local posix target
# can be left empy most of the time (default: search in $PATH)
#TOOLCHAIN_POSIX :=
# Path to FreeRTOS source, see http://www.freertos.org.
#FREERTOS_PREFIX := $(HOME)/.local/FreeRTOSv9.0.0/
# Path to the st-flash binary, see https://github.com/texane/stlink (default: search in $PATH)
#ST_FLASH_PREFIX :=
# Path to the openocd binary (default: search in $PATH)
#OOCD_PREFIX :=
# Prefix for the Clang compiler
#CLANG_PREFIX :=
# --sysroot provided to the Clang compiler, useful for providing the path to
# the embedded toolchain so the proper headers are found.
# If left empty, the option is not provided to the compiler.
#CLANG_SYSROOT_STM32 :=
#CLANG_SYSROOT_POSIX :=