2017-01-05 14:08:00 +00:00
|
|
|
# Define programs and commands for the toolchain
|
2018-04-11 23:46:12 +00:00
|
|
|
# Do not modiy this file. Instead create a file toolchain-user.mak which can overwrite anything in here.
|
2020-09-23 19:48:09 +00:00
|
|
|
PYTHON = python3
|
2018-04-07 01:44:49 +00:00
|
|
|
DFU-UTIL = dfu-util
|
|
|
|
DFU-SUFFIX = dfu-suffix
|
|
|
|
ST-FLASH = st-flash
|
|
|
|
TOOLCHAIN = arm-none-eabi-
|
|
|
|
CC = $(TOOLCHAIN)gcc
|
|
|
|
OBJCOPY = $(TOOLCHAIN)objcopy
|
|
|
|
OBJDUMP = $(TOOLCHAIN)objdump
|
|
|
|
SIZE = $(TOOLCHAIN)size
|
|
|
|
NM = $(TOOLCHAIN)nm
|
|
|
|
MKDIR = mkdir
|