2020-03-25 14:06:51 +07:00
|
|
|
# ---------------------------------------
|
2019-05-01 14:27:17 +07:00
|
|
|
# Common make definition for all examples
|
2020-03-25 14:06:51 +07:00
|
|
|
# ---------------------------------------
|
2019-05-01 14:27:17 +07:00
|
|
|
|
2020-03-25 14:06:51 +07:00
|
|
|
#-------------- Select the board to build for. ------------
|
|
|
|
BOARD_LIST = $(sort $(subst /.,,$(subst $(TOP)/hw/bsp/,,$(wildcard $(TOP)/hw/bsp/*/.))))
|
|
|
|
|
|
|
|
ifeq ($(filter $(BOARD),$(BOARD_LIST)),)
|
|
|
|
$(info You must provide a BOARD parameter with 'BOARD=', supported boards are:)
|
|
|
|
$(foreach b,$(BOARD_LIST),$(info - $(b)))
|
|
|
|
$(error Invalid BOARD specified)
|
2019-11-13 09:26:00 -08:00
|
|
|
endif
|
2019-05-01 14:27:17 +07:00
|
|
|
|
2020-03-25 14:06:51 +07:00
|
|
|
# Handy check parameter function
|
2019-05-29 16:56:26 +07:00
|
|
|
check_defined = \
|
|
|
|
$(strip $(foreach 1,$1, \
|
|
|
|
$(call __check_defined,$1,$(strip $(value 2)))))
|
|
|
|
__check_defined = \
|
|
|
|
$(if $(value $1),, \
|
|
|
|
$(error Undefined make flag: $1$(if $2, ($2))))
|
2020-03-25 14:06:51 +07:00
|
|
|
|
2019-05-01 14:27:17 +07:00
|
|
|
# Build directory
|
2019-05-24 12:04:47 +07:00
|
|
|
BUILD = _build/build-$(BOARD)
|
2019-05-01 14:27:17 +07:00
|
|
|
|
2020-03-25 14:06:51 +07:00
|
|
|
# Board specific define
|
2019-05-01 14:27:17 +07:00
|
|
|
include $(TOP)/hw/bsp/$(BOARD)/board.mk
|
|
|
|
|
2020-03-25 14:06:51 +07:00
|
|
|
#-------------- Cross Compiler ------------
|
|
|
|
# Can be set by board, default to ARM GCC
|
|
|
|
CROSS_COMPILE ?= arm-none-eabi-
|
|
|
|
|
|
|
|
CC = $(CROSS_COMPILE)gcc
|
|
|
|
CXX = $(CROSS_COMPILE)g++
|
|
|
|
OBJCOPY = $(CROSS_COMPILE)objcopy
|
|
|
|
SIZE = $(CROSS_COMPILE)size
|
|
|
|
MKDIR = mkdir
|
|
|
|
SED = sed
|
|
|
|
CP = cp
|
|
|
|
RM = rm
|
|
|
|
|
|
|
|
#-------------- Source files and compiler flags --------------
|
|
|
|
|
2019-05-14 13:59:45 +07:00
|
|
|
# Include all source C in board folder
|
2019-10-12 00:00:08 +07:00
|
|
|
SRC_C += hw/bsp/board.c
|
2019-05-14 13:59:45 +07:00
|
|
|
SRC_C += $(subst $(TOP)/,,$(wildcard $(TOP)/hw/bsp/$(BOARD)/*.c))
|
|
|
|
|
2019-05-01 14:27:17 +07:00
|
|
|
# Compiler Flags
|
|
|
|
CFLAGS += \
|
2020-07-23 01:39:15 +07:00
|
|
|
-ggdb \
|
|
|
|
-fdata-sections \
|
|
|
|
-ffunction-sections \
|
|
|
|
-fsingle-precision-constant \
|
|
|
|
-fno-strict-aliasing \
|
|
|
|
-Wdouble-promotion \
|
|
|
|
-Wstrict-prototypes \
|
|
|
|
-Wall \
|
|
|
|
-Wextra \
|
|
|
|
-Werror \
|
|
|
|
-Wfatal-errors \
|
|
|
|
-Werror-implicit-function-declaration \
|
|
|
|
-Wfloat-equal \
|
|
|
|
-Wundef \
|
|
|
|
-Wshadow \
|
|
|
|
-Wwrite-strings \
|
|
|
|
-Wsign-compare \
|
|
|
|
-Wmissing-format-attribute \
|
|
|
|
-Wunreachable-code \
|
|
|
|
-Wcast-align
|
|
|
|
|
2019-05-01 14:27:17 +07:00
|
|
|
# Debugging/Optimization
|
|
|
|
ifeq ($(DEBUG), 1)
|
2020-07-23 01:39:15 +07:00
|
|
|
CFLAGS += -Og
|
2019-05-01 14:27:17 +07:00
|
|
|
else
|
2020-07-23 01:39:15 +07:00
|
|
|
CFLAGS += -Os
|
2019-10-03 14:22:43 +02:00
|
|
|
endif
|
2019-11-03 13:18:02 +07:00
|
|
|
|
2020-04-22 17:08:41 +07:00
|
|
|
# Log level is mapped to TUSB DEBUG option
|
2019-11-03 13:18:02 +07:00
|
|
|
ifneq ($(LOG),)
|
|
|
|
CFLAGS += -DCFG_TUSB_DEBUG=$(LOG)
|
2019-05-01 14:27:17 +07:00
|
|
|
endif
|
2020-04-22 17:08:41 +07:00
|
|
|
|
2020-04-22 19:18:03 +07:00
|
|
|
# Logger: default is uart, can be set to rtt or swo
|
2020-04-22 17:08:41 +07:00
|
|
|
ifeq ($(LOGGER),rtt)
|
2020-07-23 01:39:15 +07:00
|
|
|
RTT_SRC = lib/SEGGER_RTT
|
|
|
|
CFLAGS += -DLOGGER_RTT -DSEGGER_RTT_MODE_DEFAULT=SEGGER_RTT_MODE_BLOCK_IF_FIFO_FULL
|
2020-04-22 17:08:41 +07:00
|
|
|
INC += $(TOP)/$(RTT_SRC)/RTT
|
|
|
|
SRC_C += $(RTT_SRC)/RTT/SEGGER_RTT_printf.c
|
|
|
|
SRC_C += $(RTT_SRC)/RTT/SEGGER_RTT.c
|
2020-04-22 19:18:03 +07:00
|
|
|
else ifeq ($(LOGGER),swo)
|
2020-07-23 01:39:15 +07:00
|
|
|
CFLAGS += -DLOGGER_SWO
|
2020-04-22 17:08:41 +07:00
|
|
|
endif
|