1 include makefile_color.mk
3 # Minimum binaries version required by this SDK version
4 MIN_BOOTLOADER_VERSION := 7
5 MIN_STACK_VERSION := 5.4.0.0
9 INCLUDES := -I$(SDK_PATH)
11 build_directory?= build/
12 board_directory?= board/
15 # Command are prefixed by @(D) or @(DD)
16 # By default all is silent
21 # Explicitly print everything
25 # Explicitly print level 1
29 # General SDK folder structure
32 HAL_API_PATH := mcu/hal_api/
33 WP_LIB_PATH := libraries/
34 GLOBAL_BUILD := $(build_directory)
35 BOARDS_PATH := $(board_directory)
36 BOARDS_PATH_INTERNAL := board_internal/
39 # General compiler flags (Define it before specific makefile in order to allow app to overwrite it)
40 CFLAGS := -Wall -Werror -Wextra
41 CFLAGS += -std=gnu99 -mthumb -nostartfiles -lgcc -lnosys -ggdb --specs=nano.specs
42 CFLAGS += -Os -ffunction-sections -fdata-sections
45 LDFLAGS := -Wl,--gc-sections -Wl,-L$(MCU_PATH)common/linker
47 # include global config file
50 # Check that a correct version of python is installed by trying to launch check_python
51 # This script has python3 shebang so try it without specifying interpreter
52 PYTHON_STATUS := $(shell tools/check_python.py > /dev/null 2>&1; echo $$?)
53 ifneq ($(PYTHON_STATUS),0)
54 ifeq ($(python_interpreter),)
57 python=$(python_interpreter)
59 # It looks like python3 cannot be found or does not exist as a cmd (windows)
60 # Force the launch with python cmd
61 PYTHON_STATUS := $(shell $(python) tools/check_python.py > /dev/null; echo $$?)
62 ifneq ($(PYTHON_STATUS),0)
63 $(error Cannot find a suitable python version. You can force the python interpreter from config.mk)
65 # Display a message if python version is 2.
66 VERSION := $(shell $(python) tools/check_python.py)
68 $(warning ***********************************************************************)
69 $(warning "SDK supports python3 and python2 but uses python3 by default.)
70 $(warning "It looks like python3 is not installed on your system.)
71 $(warning "Using the python2 fallback for now but python2 support will be removed in a future release.)
72 $(warning ***********************************************************************)
79 # Prefix for Arm tools
80 PREFIX := $(arm_toolchain)arm-none-eabi-
85 OBJCOPY := $(PREFIX)objcopy
91 SCRAT_GEN := $(python) tools/genscratchpad.py
92 HEX_GEN := $(python) tools/genhex.py
93 HEXTOOL := $(python) tools/hextool.py
94 FMW_SEL := $(python) tools/firmware_selector.py
95 BOOT_CONF := $(python) tools/bootloader_config.py
96 BL_UPD_CONF := $(python) tools/bl_updater_config.py
97 WIZARD := $(python) tools/sdk_wizard.py
98 HEX2ARRAY32 := $(python) tools/hextoarray32.py
101 # List of available boards found under board/
102 AVAILABLE_BOARDS := $(patsubst $(BOARDS_PATH)%/,%,$(sort $(dir $(wildcard $(BOARDS_PATH)*/.))))
104 # Generic name of stack
105 FIRMWARE_NAME := wpc_stack
107 ifeq (,$(filter clean_all,$(MAKECMDGOALS)))
108 ifeq ($(target_board),)
109 $(error No board defined, please use target_board=... on your command line. Available boards are: $(AVAILABLE_BOARDS))
113 BOARD_FOLDER := $(BOARDS_PATH)$(target_board)
115 ifeq (,$(wildcard $(BOARD_FOLDER)))
116 $(error Board $(target_board) doesn't exist. Available boards are: $(AVAILABLE_BOARDS))
120 BOARD_CONFIG := $(BOARD_FOLDER)/config.mk
122 # Include board specific config
123 -include $(BOARD_CONFIG)
125 # Include makefile for mcu family
126 -include $(MCU_PATH)$(MCU_FAMILY)/makefile
128 # Folder for Wirepas stack binary image
131 # Add new flags as board and mcu are known
132 CFLAGS += -DTARGET_BOARD=$(target_board)
133 CFLAGS += -DMCU=$(MCU)
134 CFLAGS += -DMCU_SUB=$(MCU_SUB)
136 MCU_UPPER=$(shell echo $(MCU) | tr a-z A-Z)
137 CFLAGS += -D$(MCU_UPPER)
139 CFLAGS += -march=$(ARCH)
141 INCLUDES += -I$(MCU_PATH)common/cmsis -I$(BOARD_FOLDER)
143 # Folder where the application sources are located (and config file)
144 # Can be in different folders, try them one by one
145 APP_POSSIBLE_FOLDER := source/*/$(app_name)/ source/$(app_name)/
146 APP_POSSIBLE_FOLDER += $(app_extra_folder)/$(app_name)/
148 APP_SRCS_PATH := $(wildcard $(APP_POSSIBLE_FOLDER))
149 ifeq (,$(wildcard $(APP_SRCS_PATH)))
150 $(error App $(app_name) doesn't exist)
153 # Check if an alternative config is given
154 ifeq ($(app_config),)
155 APP_CONFIG_FILE = config.mk
156 APP_NAME := $(app_name)
158 $(info Using alternate app config: $(app_config))
159 APP_CONFIG_FILE = $(app_config).mk
160 # Modify app_name for build folder
161 APP_NAME := $(app_name)_$(app_config)
164 APP_CONFIG = $(APP_SRCS_PATH)$(APP_CONFIG_FILE)
165 ifeq (,$(wildcard $(APP_CONFIG)))
166 $(error Config file $(APP_CONFIG) doesn't exist)
169 # Include app specific config
170 include $(APP_CONFIG)
173 BUILDPREFIX := $(GLOBAL_BUILD)$(target_board)/
174 BUILDPREFIX_APP := $(BUILDPREFIX)$(APP_NAME)/
175 # Stack is under an app specific folder as config may depend on app
176 BUILDPREFIX_STACK := $(BUILDPREFIX_APP)stack/
177 # Bootloader is under an app specific folder as config may depend on app (unlocked/locked)
178 BUILDPREFIX_BOOTLOADER := $(BUILDPREFIX_APP)bootloader/
179 BUILDPREFIX_TEST_BOOTLOADER := $(BUILDPREFIX_APP)bootloader_test/
180 # Bootloader updater is under an app specific folder as it depends on bootloader
181 BUILDPREFIX_BL_UPDATER := $(BUILDPREFIX_APP)bl_updater/
183 BOOTLOADER_HEX := $(BUILDPREFIX_BOOTLOADER)bootloader.hex
184 BOOTLOADER_TEST_HEX := $(BUILDPREFIX_APP)bootloader_test/bootloader_test.hex
185 BOOTLOADER_CONFIG_INI := $(BUILDPREFIX_APP)bootloader_full_config.ini
187 BL_UPDATER_HEX := $(BUILDPREFIX_BL_UPDATER)bl_updater.hex
188 BL_UPDATER_CMD_LIST := $(APP_SRCS_PATH)bl_updater_cmd_list.conf
189 BL_UPDATER_NEW_BL_DATA := $(BUILDPREFIX_BL_UPDATER)new_bootloader_data.c
190 BL_UPDATER_CONFIG := $(BUILDPREFIX_BL_UPDATER)bl_updater_config_blupd2.c
191 BL_UPDATER_STACK_BACKUP := $(BUILDPREFIX_BL_UPDATER)stack_backup.c
192 BL_UPDATER_OLD_CONFIG_INI := $(BUILDPREFIX_BL_UPDATER)old_bootloader_config.ini
193 BL_UPDATER_STACK_HEX := $(BUILDPREFIX_STACK)$(FIRMWARE_NAME)_for_bl_updater.hex
194 BL_UPDATER_BUILD_VARIABLES_MK := $(BUILDPREFIX_BL_UPDATER)old_bootloader_build_variables.mk
196 STACK_HEX := $(BUILDPREFIX_STACK)$(FIRMWARE_NAME).hex
197 STACK_WITH_BL_UPDATER_HEX := $(BUILDPREFIX_STACK)$(FIRMWARE_NAME)_with_bl_updater.hex
198 STACK_CONF := $(BUILDPREFIX_STACK)$(FIRMWARE_NAME).conf
200 APP_HEX := $(BUILDPREFIX_APP)$(APP_NAME).hex
202 # Build-time make variables that depend on the selected configuration
203 BUILD_VARIABLES_MK := $(BUILDPREFIX_APP)build_variables.mk
205 # Files to track make command line parameters, to do a rebuild after any changes
206 MAKE_PARAMS_FILE := $(BUILDPREFIX_APP)make_params.txt
207 MAKE_PARAMS_TEMP_FILE := $(BUILDPREFIX_APP)make_params_temp.txt
209 mac_profile?=ism_24_ghz