summaryrefslogtreecommitdiff
path: root/tmk_core/common/test/rules.mk
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2021-11-19 18:41:02 +0000
committerGitHub <noreply@github.com>2021-11-19 10:41:02 -0800
commit2728603fe6d73e805a539d337fd01051c46ca806 (patch)
tree5c83ffc7efa112da870bd5d8502a9d91d4792f35 /tmk_core/common/test/rules.mk
parent43b9e23bae12916d5161f03700c9bfe46737324b (diff)
Move tmk_core/common/<plat> (#13918)
Diffstat (limited to 'tmk_core/common/test/rules.mk')
-rw-r--r--tmk_core/common/test/rules.mk24
1 files changed, 0 insertions, 24 deletions
diff --git a/tmk_core/common/test/rules.mk b/tmk_core/common/test/rules.mk
deleted file mode 100644
index 73d2302da7..0000000000
--- a/tmk_core/common/test/rules.mk
+++ /dev/null
@@ -1,24 +0,0 @@
-eeprom_stm32_DEFS := -DFLASH_STM32_MOCKED -DNO_PRINT -DFEE_FLASH_BASE=FlashBuf
-eeprom_stm32_tiny_DEFS := $(eeprom_stm32_DEFS) \
- -DFEE_MCU_FLASH_SIZE=1 \
- -DMOCK_FLASH_SIZE=1024 \
- -DFEE_PAGE_SIZE=512 \
- -DFEE_PAGE_COUNT=1
-eeprom_stm32_large_DEFS := $(eeprom_stm32_DEFS) \
- -DFEE_MCU_FLASH_SIZE=64 \
- -DMOCK_FLASH_SIZE=65536 \
- -DFEE_PAGE_SIZE=2048 \
- -DFEE_PAGE_COUNT=16
-
-eeprom_stm32_INC := \
- $(TMK_PATH)/common/chibios/
-eeprom_stm32_tiny_INC := $(eeprom_stm32_INC)
-eeprom_stm32_large_INC := $(eeprom_stm32_INC)
-
-eeprom_stm32_SRC := \
- $(TOP_DIR)/drivers/eeprom/eeprom_driver.c \
- $(TMK_PATH)/common/test/eeprom_stm32_tests.cpp \
- $(TMK_PATH)/common/test/flash_stm32_mock.c \
- $(TMK_PATH)/common/chibios/eeprom_stm32.c
-eeprom_stm32_tiny_SRC := $(eeprom_stm32_SRC)
-eeprom_stm32_large_SRC := $(eeprom_stm32_SRC)