2020-10-07 09:37:43 +00:00
|
|
|
OBJ_DIR := $(OBJ_DIR)/$(TARGET)
|
|
|
|
|
|
|
|
# Include source folder paths to virtual paths
|
|
|
|
VPATH = $(sort $(dir $(C_SOURCES)) $(dir $(ASM_SOURCES)) $(dir $(CPP_SOURCES)))
|
|
|
|
|
|
|
|
# Gather object
|
|
|
|
OBJECTS = $(addprefix $(OBJ_DIR)/, $(notdir $(C_SOURCES:.c=.o)))
|
|
|
|
OBJECTS += $(addprefix $(OBJ_DIR)/, $(notdir $(ASM_SOURCES:.s=.o)))
|
|
|
|
OBJECTS += $(addprefix $(OBJ_DIR)/, $(notdir $(CPP_SOURCES:.cpp=.o)))
|
|
|
|
|
|
|
|
# Generate dependencies
|
|
|
|
DEPS = $(OBJECTS:.o=.d)
|
|
|
|
|
2020-11-06 08:31:59 +00:00
|
|
|
$(shell test -d $(OBJ_DIR) || mkdir -p $(OBJ_DIR))
|
2020-10-07 09:37:43 +00:00
|
|
|
|
2020-10-08 09:47:12 +00:00
|
|
|
BUILD_FLAGS_SHELL=\
|
Display and UI implementation (#169)
* Menu app. Lib: add mlib submodule.
* Menu: new startup lib dependency definition
* Menu: hierarchy in menu. Cube: fix heap1/4 inconsistency, stack protection.
* GUI: rendering pipeline initial version.
* GUI: layered widget composing, FURI record. Menu: FURI record, api.
* GUI: input dispatching. Menu: switch to input from GUI.
* GUI, MENU: code style cleanup, fix type conversion warnings.
* GUI, Menu: syntax check.
* Makefile: check and reinit submodules, format.
* Menu: lock on event processing. Makefile: proper submodule initialization.
* Menu: fix stack corruption by queue.
* GUI: refactor.
* Makefile: format rule fix, st-util pid.
* GUI, Menu, FURI: format with clang-format.
* GUI, MENU: locks in critical sections, fix stack corruption, ready signaling.
* Makefile: clang format rule cleanup.
* GUI,MENU: migrate to new API.
* Applications: PRODUCTION_HW variable, skip drivers build on local target.
* refactor production build
* add git to dockerfile
* GUI: uncomment lock block
Co-authored-by: Aleksandr Kutuzov <aku@plooks.com>
2020-10-14 10:21:55 +00:00
|
|
|
echo "$(CFLAGS)" > $(OBJ_DIR)/BUILD_FLAGS.tmp; \
|
|
|
|
diff $(OBJ_DIR)/BUILD_FLAGS $(OBJ_DIR)/BUILD_FLAGS.tmp 2>/dev/null \
|
2020-10-08 09:47:12 +00:00
|
|
|
&& ( echo "CFLAGS ok"; rm $(OBJ_DIR)/BUILD_FLAGS.tmp) \
|
|
|
|
|| ( echo "CFLAGS has been changed"; mv $(OBJ_DIR)/BUILD_FLAGS.tmp $(OBJ_DIR)/BUILD_FLAGS )
|
|
|
|
$(info $(shell $(BUILD_FLAGS_SHELL)))
|
|
|
|
|
Display and UI implementation (#169)
* Menu app. Lib: add mlib submodule.
* Menu: new startup lib dependency definition
* Menu: hierarchy in menu. Cube: fix heap1/4 inconsistency, stack protection.
* GUI: rendering pipeline initial version.
* GUI: layered widget composing, FURI record. Menu: FURI record, api.
* GUI: input dispatching. Menu: switch to input from GUI.
* GUI, MENU: code style cleanup, fix type conversion warnings.
* GUI, Menu: syntax check.
* Makefile: check and reinit submodules, format.
* Menu: lock on event processing. Makefile: proper submodule initialization.
* Menu: fix stack corruption by queue.
* GUI: refactor.
* Makefile: format rule fix, st-util pid.
* GUI, Menu, FURI: format with clang-format.
* GUI, MENU: locks in critical sections, fix stack corruption, ready signaling.
* Makefile: clang format rule cleanup.
* GUI,MENU: migrate to new API.
* Applications: PRODUCTION_HW variable, skip drivers build on local target.
* refactor production build
* add git to dockerfile
* GUI: uncomment lock block
Co-authored-by: Aleksandr Kutuzov <aku@plooks.com>
2020-10-14 10:21:55 +00:00
|
|
|
CHECK_AND_REINIT_SUBMODULES_SHELL=\
|
|
|
|
if git submodule status | egrep -q '^[-]|^[+]' ; then \
|
|
|
|
echo "INFO: Need to reinitialize git submodules"; \
|
|
|
|
git submodule update --init; \
|
|
|
|
fi
|
|
|
|
$(info $(shell $(CHECK_AND_REINIT_SUBMODULES_SHELL)))
|
|
|
|
|
2020-10-07 09:37:43 +00:00
|
|
|
all: $(OBJ_DIR)/$(PROJECT).elf $(OBJ_DIR)/$(PROJECT).hex $(OBJ_DIR)/$(PROJECT).bin
|
|
|
|
|
|
|
|
$(OBJ_DIR)/$(PROJECT).elf: $(OBJECTS)
|
|
|
|
@echo "\tLD\t" $@
|
|
|
|
@$(CC) $(LDFLAGS) $(OBJECTS) -o $@
|
|
|
|
@$(SZ) $@
|
|
|
|
|
|
|
|
$(OBJ_DIR)/$(PROJECT).hex: $(OBJ_DIR)/$(PROJECT).elf
|
|
|
|
@echo "\tHEX\t" $@
|
|
|
|
@$(HEX) $< $@
|
|
|
|
|
|
|
|
$(OBJ_DIR)/$(PROJECT).bin: $(OBJ_DIR)/$(PROJECT).elf
|
|
|
|
@echo "\tBIN\t" $@
|
|
|
|
@$(BIN) $< $@
|
|
|
|
|
2020-10-26 17:00:17 +00:00
|
|
|
$(OBJ_DIR)/%.o: %.c $(OBJ_DIR)/BUILD_FLAGS $(ASSETS)
|
2020-10-07 09:37:43 +00:00
|
|
|
@echo "\tCC\t" $@
|
|
|
|
@$(CC) $(CFLAGS) -c $< -o $@
|
|
|
|
|
2020-10-26 17:00:17 +00:00
|
|
|
$(OBJ_DIR)/%.o: %.s $(OBJ_DIR)/BUILD_FLAGS $(ASSETS)
|
2020-10-07 09:37:43 +00:00
|
|
|
@echo "\tASM\t" $@
|
|
|
|
@$(AS) $(CFLAGS) -c $< -o $@
|
|
|
|
|
2020-10-26 17:00:17 +00:00
|
|
|
$(OBJ_DIR)/%.o: %.cpp $(OBJ_DIR)/BUILD_FLAGS $(ASSETS)
|
2020-10-07 09:37:43 +00:00
|
|
|
@echo "\tCPP\t" $@
|
|
|
|
@$(CPP) $(CFLAGS) $(CPPFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
$(OBJ_DIR)/flash: $(OBJ_DIR)/$(PROJECT).bin
|
|
|
|
st-flash --reset write $(OBJ_DIR)/$(PROJECT).bin $(FLASH_ADDRESS)
|
|
|
|
touch $@
|
|
|
|
|
|
|
|
$(OBJ_DIR)/upload: $(OBJ_DIR)/$(PROJECT).bin
|
2020-10-26 17:00:17 +00:00
|
|
|
dfu-util -D $(OBJ_DIR)/$(PROJECT).bin -a 0 -s $(FLASH_ADDRESS):leave
|
2020-10-07 09:37:43 +00:00
|
|
|
touch $@
|
|
|
|
|
2020-10-26 17:00:17 +00:00
|
|
|
$(ASSETS): $(ASSETS_SOURCES)
|
|
|
|
@echo "\tASSETS\t" $@
|
|
|
|
@$(ASSETS_COMPILLER) icons -s $(ASSETS_SOURCE_DIR) -o $(ASSETS_OUTPUT_DIR)
|
|
|
|
|
2020-10-07 09:37:43 +00:00
|
|
|
flash: $(OBJ_DIR)/flash
|
|
|
|
|
|
|
|
upload: $(OBJ_DIR)/upload
|
|
|
|
|
|
|
|
debug: flash
|
2020-11-06 08:31:59 +00:00
|
|
|
$(DEBUG_AGENT) & echo $$! > $(OBJ_DIR)/agent.PID
|
2020-10-19 16:31:24 +00:00
|
|
|
arm-none-eabi-gdb \
|
2020-10-08 09:47:12 +00:00
|
|
|
-ex "target extended-remote 127.0.0.1:4242" \
|
|
|
|
-ex "set confirm off" \
|
2020-10-17 13:34:16 +00:00
|
|
|
-ex "source ../debug/FreeRTOS/FreeRTOS.py" \
|
2020-10-08 09:47:12 +00:00
|
|
|
$(OBJ_DIR)/$(PROJECT).elf; \
|
2020-11-06 08:31:59 +00:00
|
|
|
kill `cat $(OBJ_DIR)/agent.PID`; \
|
|
|
|
rm $(OBJ_DIR)/agent.PID
|
|
|
|
|
|
|
|
bm_debug: flash
|
|
|
|
set -m; blackmagic & echo $$! > $(OBJ_DIR)/agent.PID
|
|
|
|
arm-none-eabi-gdb \
|
|
|
|
-ex "target extended-remote 127.0.0.1:2000" \
|
|
|
|
-ex "set confirm off" \
|
|
|
|
-ex "monitor debug_bmp enable"\
|
|
|
|
-ex "monitor swdp_scan"\
|
|
|
|
-ex "attach 1"\
|
|
|
|
-ex "source ../debug/FreeRTOS/FreeRTOS.py" \
|
|
|
|
$(OBJ_DIR)/$(PROJECT).elf; \
|
|
|
|
kill `cat $(OBJ_DIR)/agent.PID`; \
|
|
|
|
rm $(OBJ_DIR)/agent.PID
|
2020-10-07 09:37:43 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
@echo "\tCLEAN\t"
|
|
|
|
@$(RM) $(OBJ_DIR)/*
|
2020-10-26 17:00:17 +00:00
|
|
|
@$(RM) $(ASSETS)
|
2020-10-07 09:37:43 +00:00
|
|
|
|
|
|
|
z: clean
|
|
|
|
$(MAKE) all
|
|
|
|
|
|
|
|
zz: clean
|
|
|
|
$(MAKE) flash
|
|
|
|
|
|
|
|
zzz: clean
|
|
|
|
$(MAKE) debug
|
|
|
|
|
Display and UI implementation (#169)
* Menu app. Lib: add mlib submodule.
* Menu: new startup lib dependency definition
* Menu: hierarchy in menu. Cube: fix heap1/4 inconsistency, stack protection.
* GUI: rendering pipeline initial version.
* GUI: layered widget composing, FURI record. Menu: FURI record, api.
* GUI: input dispatching. Menu: switch to input from GUI.
* GUI, MENU: code style cleanup, fix type conversion warnings.
* GUI, Menu: syntax check.
* Makefile: check and reinit submodules, format.
* Menu: lock on event processing. Makefile: proper submodule initialization.
* Menu: fix stack corruption by queue.
* GUI: refactor.
* Makefile: format rule fix, st-util pid.
* GUI, Menu, FURI: format with clang-format.
* GUI, MENU: locks in critical sections, fix stack corruption, ready signaling.
* Makefile: clang format rule cleanup.
* GUI,MENU: migrate to new API.
* Applications: PRODUCTION_HW variable, skip drivers build on local target.
* refactor production build
* add git to dockerfile
* GUI: uncomment lock block
Co-authored-by: Aleksandr Kutuzov <aku@plooks.com>
2020-10-14 10:21:55 +00:00
|
|
|
FORMAT_SOURCES := $(shell find ../applications -iname "*.h" -o -iname "*.c" -o -iname "*.cpp")
|
2020-11-06 08:31:59 +00:00
|
|
|
FORMAT_SOURCES += $(shell find ../bootloader -iname "*.h" -o -iname "*.c" -o -iname "*.cpp")
|
Display and UI implementation (#169)
* Menu app. Lib: add mlib submodule.
* Menu: new startup lib dependency definition
* Menu: hierarchy in menu. Cube: fix heap1/4 inconsistency, stack protection.
* GUI: rendering pipeline initial version.
* GUI: layered widget composing, FURI record. Menu: FURI record, api.
* GUI: input dispatching. Menu: switch to input from GUI.
* GUI, MENU: code style cleanup, fix type conversion warnings.
* GUI, Menu: syntax check.
* Makefile: check and reinit submodules, format.
* Menu: lock on event processing. Makefile: proper submodule initialization.
* Menu: fix stack corruption by queue.
* GUI: refactor.
* Makefile: format rule fix, st-util pid.
* GUI, Menu, FURI: format with clang-format.
* GUI, MENU: locks in critical sections, fix stack corruption, ready signaling.
* Makefile: clang format rule cleanup.
* GUI,MENU: migrate to new API.
* Applications: PRODUCTION_HW variable, skip drivers build on local target.
* refactor production build
* add git to dockerfile
* GUI: uncomment lock block
Co-authored-by: Aleksandr Kutuzov <aku@plooks.com>
2020-10-14 10:21:55 +00:00
|
|
|
FORMAT_SOURCES += $(shell find ../core -iname "*.h" -o -iname "*.c" -o -iname "*.cpp")
|
|
|
|
|
|
|
|
format:
|
|
|
|
@echo "Formatting sources with clang-format"
|
|
|
|
@clang-format -style=file -i $(FORMAT_SOURCES)
|
|
|
|
|
2020-10-07 09:37:43 +00:00
|
|
|
-include $(DEPS)
|