mirror of
https://gitlab.com/d3tn/ud3tn.git
synced 2026-08-18 13:09:11 +02:00
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>
34 lines
1.2 KiB
Text
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 :=
|