LL_DmaHelper (c++)

This commit is contained in:
Attila Body 2019-10-25 14:47:46 +02:00
parent f0ddd19150
commit 663d68baf1
5 changed files with 81 additions and 9 deletions

View file

@ -22,7 +22,7 @@ TARGET = f407ve_hs_uart
DEBUG = 1
# optimization
OPT = -Og
CXXSTD = -std=c++17
#######################################
# paths
@ -172,7 +172,7 @@ CC_INCLUDES = \
ASFLAGS = $(MCU) $(AS_DEFS) $(AS_INCLUDES) $(OPT) -Wall -fdata-sections -ffunction-sections
CFLAGS = $(MCU) $(COMMON_DEFS) $(C_DEFS) $(COMMON_INCLUDES) $(C_INCLUDES) $(OPT) -Wall -fdata-sections -ffunction-sections
CXXFLAGS = $(MCU) $(COMMON_DEFS) $(CC_DEFS) $(COMMON_INCLUDES) $(CC_INCLUDES) $(OPT) -Wall -fdata-sections -ffunction-sections
CXXFLAGS = $(MCU) $(COMMON_DEFS) $(CC_DEFS) $(COMMON_INCLUDES) $(CC_INCLUDES) $(OPT) $(CXXSTD) -Wall -fdata-sections -ffunction-sections
ifeq ($(DEBUG), 1)
CFLAGS += -g -gdwarf-2