* eeprom_stm32: implement wear leveling Update EECONFIG_MAGIC_NUMBER eeprom_stm32: check emulated eeprom size is large enough * eeprom_stm32: Increasing simulated EEPROM density on stm32 * Adding utility script to decode emulated eeprom * Adding unit tests * Applying qmk cformat changes * cleaned up flash mocking * Fix for stm32eeprom_parser.py checking via signature with wrong base * Fix for nk65 keyboard Co-authored-by: Ilya Zhuravlev <whatever@xyz.is> Co-authored-by: zvecr <git@zvecr.com>
		
			
				
	
	
		
			79 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
ifndef VERBOSE
 | 
						|
.SILENT:
 | 
						|
endif
 | 
						|
 | 
						|
.DEFAULT_GOAL := all
 | 
						|
 | 
						|
include common.mk
 | 
						|
 | 
						|
TARGET=test/$(TEST)
 | 
						|
 | 
						|
GTEST_OUTPUT = $(BUILD_DIR)/gtest
 | 
						|
 | 
						|
TEST_OBJ = $(BUILD_DIR)/test_obj
 | 
						|
 | 
						|
OUTPUTS := $(TEST_OBJ)/$(TEST) $(GTEST_OUTPUT)
 | 
						|
 | 
						|
GTEST_INC := \
 | 
						|
	$(LIB_PATH)/googletest/googletest/include\
 | 
						|
	$(LIB_PATH)/googletest/googlemock/include\
 | 
						|
 | 
						|
GTEST_INTERNAL_INC :=\
 | 
						|
	$(LIB_PATH)/googletest/googletest\
 | 
						|
	$(LIB_PATH)/googletest/googlemock
 | 
						|
 | 
						|
$(GTEST_OUTPUT)_SRC :=\
 | 
						|
	googletest/src/gtest-all.cc\
 | 
						|
	googlemock/src/gmock-all.cc
 | 
						|
 | 
						|
$(GTEST_OUTPUT)_DEFS :=
 | 
						|
$(GTEST_OUTPUT)_INC := $(GTEST_INC) $(GTEST_INTERNAL_INC)
 | 
						|
 | 
						|
LDFLAGS += -lstdc++ -lpthread -shared-libgcc
 | 
						|
CREATE_MAP := no
 | 
						|
 | 
						|
VPATH +=\
 | 
						|
	$(LIB_PATH)/googletest\
 | 
						|
	$(LIB_PATH)/googlemock\
 | 
						|
	$(LIB_PATH)/printf
 | 
						|
 | 
						|
all: elf
 | 
						|
 | 
						|
VPATH += $(COMMON_VPATH)
 | 
						|
PLATFORM:=TEST
 | 
						|
PLATFORM_KEY:=test
 | 
						|
 | 
						|
ifeq ($(strip $(DEBUG)), 1)
 | 
						|
CONSOLE_ENABLE = yes
 | 
						|
endif
 | 
						|
 | 
						|
ifneq ($(filter $(FULL_TESTS),$(TEST)),)
 | 
						|
include tests/$(TEST)/rules.mk
 | 
						|
endif
 | 
						|
 | 
						|
include common_features.mk
 | 
						|
include $(TMK_PATH)/common.mk
 | 
						|
include $(QUANTUM_PATH)/debounce/tests/rules.mk
 | 
						|
include $(QUANTUM_PATH)/sequencer/tests/rules.mk
 | 
						|
include $(QUANTUM_PATH)/serial_link/tests/rules.mk
 | 
						|
include $(TMK_PATH)/common/test/rules.mk
 | 
						|
ifneq ($(filter $(FULL_TESTS),$(TEST)),)
 | 
						|
include build_full_test.mk
 | 
						|
endif
 | 
						|
 | 
						|
$(TEST)_SRC += \
 | 
						|
	tests/test_common/main.c \
 | 
						|
	$(LIB_PATH)/printf/printf.c \
 | 
						|
	$(QUANTUM_PATH)/logging/print.c
 | 
						|
 | 
						|
$(TEST_OBJ)/$(TEST)_SRC := $($(TEST)_SRC)
 | 
						|
$(TEST_OBJ)/$(TEST)_INC := $($(TEST)_INC) $(VPATH) $(GTEST_INC)
 | 
						|
$(TEST_OBJ)/$(TEST)_DEFS := $($(TEST)_DEFS)
 | 
						|
$(TEST_OBJ)/$(TEST)_CONFIG := $($(TEST)_CONFIG)
 | 
						|
 | 
						|
include $(TMK_PATH)/native.mk
 | 
						|
include $(TMK_PATH)/rules.mk
 | 
						|
 | 
						|
 | 
						|
$(shell mkdir -p $(BUILD_DIR)/test 2>/dev/null)
 | 
						|
$(shell mkdir -p $(TEST_OBJ) 2>/dev/null)
 |