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)
|
|
|
|
|
[FL-781] FURI, CLI, stdlib: stdout hooks, integration between subsystems, uniform printf usage (#311)
* FURI stdglue: stdout hooks, local and global, ISR safe printf. Uniform newlines for terminal/debug output. Power: prevent sleep while core 2 has not started.
* Furi record, stdglue: check mutex allocation
* remove unused test
* Furi stdglue: buferized output, dynamically allocated state. Furi record: dynamically allocated state. Input dump: proper line ending. Hal VCP: dynamically allocated state.
* Interrupt manager: explicitly init list.
* Makefile: cleanup rules, fix broken dfu upload. F4: add compiler stack protection options.
* BLE: call debug uart callback on transmission complete
* FreeRTOS: add configUSE_NEWLIB_REENTRANT
* API HAL Timebase: fix issue with idle thread stack corruption caused by systick interrupt. BT: cleanup debug info output. FreeRTOS: disable reentry for newlib.
* F4: update stack protection CFLAGS to match used compiller
* F4: disable compiller stack protection because of incompatibility with current compiller
* Makefile: return openocd logs to gdb
* BLE: fixed pin, moar power, ble trace info.
* Prevent sleep when connection is active
* Makefile: return serial port to upload rule, add workaround for mac os
* Furi: prevent usage of stack for cmsis functions.
* F4: add missing includes, add debugger breakpoints
* Applications: per app stack size.
* Furi: honor kernel state in stdglue
* FreeRTOS: remove unused hooks
* Cleanup and format sources
Co-authored-by: DrZlo13 <who.just.the.doctor@gmail.com>
2021-01-29 00:09:33 +00:00
|
|
|
ifdef DFU_SERIAL
|
|
|
|
DFU_OPTIONS += -S $(DFU_SERIAL)
|
|
|
|
endif
|
|
|
|
|
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; \
|
2021-08-22 10:43:45 +00:00
|
|
|
diff -u $(OBJ_DIR)/BUILD_FLAGS $(OBJ_DIR)/BUILD_FLAGS.tmp 2>&1 > /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"; \
|
2021-03-18 07:58:16 +00:00
|
|
|
git submodule sync; \
|
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
|
|
|
git submodule update --init; \
|
|
|
|
fi
|
|
|
|
$(info $(shell $(CHECK_AND_REINIT_SUBMODULES_SHELL)))
|
|
|
|
|
2021-08-16 20:22:30 +00:00
|
|
|
all: $(OBJ_DIR)/$(PROJECT).elf $(OBJ_DIR)/$(PROJECT).hex $(OBJ_DIR)/$(PROJECT).bin $(OBJ_DIR)/$(PROJECT).dfu
|
2020-10-07 09:37:43 +00:00
|
|
|
|
|
|
|
$(OBJ_DIR)/$(PROJECT).elf: $(OBJECTS)
|
|
|
|
@echo "\tLD\t" $@
|
2020-11-14 16:24:38 +00:00
|
|
|
@$(LD) $(LDFLAGS) $(OBJECTS) -o $@
|
2020-10-07 09:37:43 +00:00
|
|
|
@$(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) $< $@
|
|
|
|
|
2021-08-16 20:22:30 +00:00
|
|
|
$(OBJ_DIR)/$(PROJECT).dfu: $(OBJ_DIR)/$(PROJECT).hex
|
|
|
|
@echo "\tDFU\t" $@
|
|
|
|
@hex2dfu \
|
|
|
|
-i $(OBJ_DIR)/$(PROJECT).hex \
|
|
|
|
-o $(OBJ_DIR)/$(PROJECT).dfu \
|
|
|
|
-l "Flipper Zero $(shell echo $(TARGET) | tr a-z A-Z)" > /dev/null
|
|
|
|
|
2021-06-23 14:58:44 +00:00
|
|
|
$(OBJ_DIR)/%.o: %.c $(OBJ_DIR)/BUILD_FLAGS
|
2020-12-02 13:40:06 +00:00
|
|
|
@echo "\tCC\t" $< "->" $@
|
2020-10-07 09:37:43 +00:00
|
|
|
@$(CC) $(CFLAGS) -c $< -o $@
|
|
|
|
|
2021-06-23 14:58:44 +00:00
|
|
|
$(OBJ_DIR)/%.o: %.s $(OBJ_DIR)/BUILD_FLAGS
|
2020-12-02 13:40:06 +00:00
|
|
|
@echo "\tASM\t" $< "->" $@
|
2020-10-07 09:37:43 +00:00
|
|
|
@$(AS) $(CFLAGS) -c $< -o $@
|
|
|
|
|
2021-06-23 14:58:44 +00:00
|
|
|
$(OBJ_DIR)/%.o: %.cpp $(OBJ_DIR)/BUILD_FLAGS
|
2020-12-02 13:40:06 +00:00
|
|
|
@echo "\tCPP\t" $< "->" $@
|
2020-10-07 09:37:43 +00:00
|
|
|
@$(CPP) $(CFLAGS) $(CPPFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
$(OBJ_DIR)/flash: $(OBJ_DIR)/$(PROJECT).bin
|
2020-12-04 17:30:50 +00:00
|
|
|
openocd $(OPENOCD_OPTS) -c "program $(OBJ_DIR)/$(PROJECT).bin reset exit $(FLASH_ADDRESS)"
|
2020-10-07 09:37:43 +00:00
|
|
|
touch $@
|
|
|
|
|
|
|
|
$(OBJ_DIR)/upload: $(OBJ_DIR)/$(PROJECT).bin
|
[FL-781] FURI, CLI, stdlib: stdout hooks, integration between subsystems, uniform printf usage (#311)
* FURI stdglue: stdout hooks, local and global, ISR safe printf. Uniform newlines for terminal/debug output. Power: prevent sleep while core 2 has not started.
* Furi record, stdglue: check mutex allocation
* remove unused test
* Furi stdglue: buferized output, dynamically allocated state. Furi record: dynamically allocated state. Input dump: proper line ending. Hal VCP: dynamically allocated state.
* Interrupt manager: explicitly init list.
* Makefile: cleanup rules, fix broken dfu upload. F4: add compiler stack protection options.
* BLE: call debug uart callback on transmission complete
* FreeRTOS: add configUSE_NEWLIB_REENTRANT
* API HAL Timebase: fix issue with idle thread stack corruption caused by systick interrupt. BT: cleanup debug info output. FreeRTOS: disable reentry for newlib.
* F4: update stack protection CFLAGS to match used compiller
* F4: disable compiller stack protection because of incompatibility with current compiller
* Makefile: return openocd logs to gdb
* BLE: fixed pin, moar power, ble trace info.
* Prevent sleep when connection is active
* Makefile: return serial port to upload rule, add workaround for mac os
* Furi: prevent usage of stack for cmsis functions.
* F4: add missing includes, add debugger breakpoints
* Applications: per app stack size.
* Furi: honor kernel state in stdglue
* FreeRTOS: remove unused hooks
* Cleanup and format sources
Co-authored-by: DrZlo13 <who.just.the.doctor@gmail.com>
2021-01-29 00:09:33 +00:00
|
|
|
dfu-util -D $(OBJ_DIR)/$(PROJECT).bin -a 0 -s $(FLASH_ADDRESS) $(DFU_OPTIONS)
|
2020-10-07 09:37:43 +00:00
|
|
|
touch $@
|
|
|
|
|
|
|
|
flash: $(OBJ_DIR)/flash
|
|
|
|
|
|
|
|
upload: $(OBJ_DIR)/upload
|
|
|
|
|
|
|
|
debug: flash
|
2021-07-12 02:13:01 +00:00
|
|
|
arm-none-eabi-gdb-py \
|
2020-12-04 17:30:50 +00:00
|
|
|
-ex 'target extended-remote | openocd -c "gdb_port pipe" $(OPENOCD_OPTS)' \
|
2020-10-08 09:47:12 +00:00
|
|
|
-ex "set confirm off" \
|
2020-10-17 13:34:16 +00:00
|
|
|
-ex "source ../debug/FreeRTOS/FreeRTOS.py" \
|
2021-07-12 02:13:01 +00:00
|
|
|
-ex "source ../debug/PyCortexMDebug/PyCortexMDebug.py" \
|
2020-11-19 15:48:34 +00:00
|
|
|
-ex "svd_load $(SVD_FILE)" \
|
2020-12-02 10:47:13 +00:00
|
|
|
-ex "compare-sections" \
|
2020-10-08 09:47:12 +00:00
|
|
|
$(OBJ_DIR)/$(PROJECT).elf; \
|
2020-11-06 08:31:59 +00:00
|
|
|
|
2021-08-17 09:41:08 +00:00
|
|
|
debug_other:
|
2021-07-12 02:13:01 +00:00
|
|
|
arm-none-eabi-gdb-py \
|
2021-08-17 09:41:08 +00:00
|
|
|
-ex 'target extended-remote | openocd -c "gdb_port pipe" $(OPENOCD_OPTS)' \
|
2020-11-06 08:31:59 +00:00
|
|
|
-ex "set confirm off" \
|
2021-08-17 09:41:08 +00:00
|
|
|
-ex "source ../debug/PyCortexMDebug/PyCortexMDebug.py" \
|
|
|
|
-ex "svd_load $(SVD_FILE)" \
|
|
|
|
|
|
|
|
openocd:
|
|
|
|
openocd $(OPENOCD_OPTS)
|
2020-10-07 09:37:43 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
@echo "\tCLEAN\t"
|
|
|
|
@$(RM) $(OBJ_DIR)/*
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
2021-06-23 14:58:44 +00:00
|
|
|
generate_cscope_db:
|
2021-05-18 10:51:00 +00:00
|
|
|
@echo "$(C_SOURCES) $(CPP_SOURCES) $(ASM_SOURCES)" | tr ' ' '\n' > $(OBJ_DIR)/source.list.p
|
|
|
|
@cat ~/headers.list >> $(OBJ_DIR)/source.list.p
|
|
|
|
@cat $(OBJ_DIR)/source.list.p | sed -e "s|^[^//]|$$PWD/&|g" > $(OBJ_DIR)/source.list
|
|
|
|
@cscope -b -k -i $(OBJ_DIR)/source.list -f $(OBJ_DIR)/cscope.out
|
|
|
|
@rm -rf $(OBJ_DIR)/source.list $(OBJ_DIR)/source.list.p
|
|
|
|
|
|
|
|
|
2021-08-26 17:59:23 +00:00
|
|
|
ifneq ("$(wildcard $(OBJ_DIR)/*.d)","")
|
2020-10-07 09:37:43 +00:00
|
|
|
-include $(DEPS)
|
2021-08-26 17:59:23 +00:00
|
|
|
endif
|