diff options
author | Joel Challis <git@zvecr.com> | 2021-08-17 23:43:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-17 23:43:09 +0100 |
commit | 1bb7af4d446174b7181c9bb22dbd14c93642ea10 (patch) | |
tree | 894eceeb29cc2c00f6b0f08a4ca177da7f172424 /common_features.mk | |
parent | 483691dd73e5260fac958c524e0a12e705db43f6 (diff) | |
download | qmk_firmware-1bb7af4d446174b7181c9bb22dbd14c93642ea10.tar.gz qmk_firmware-1bb7af4d446174b7181c9bb22dbd14c93642ea10.zip |
Relocate platform specific drivers (#13894)
* Relocate platform specific drivers
* Move stm eeprom
* Tidy up slightly
Diffstat (limited to 'common_features.mk')
-rw-r--r-- | common_features.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common_features.mk b/common_features.mk index 493aab635..1eece0242 100644 --- a/common_features.mk +++ b/common_features.mk | |||
@@ -178,6 +178,7 @@ else | |||
178 | else ifneq ($(filter $(MCU_SERIES),STM32L0xx STM32L1xx),) | 178 | else ifneq ($(filter $(MCU_SERIES),STM32L0xx STM32L1xx),) |
179 | OPT_DEFS += -DEEPROM_DRIVER | 179 | OPT_DEFS += -DEEPROM_DRIVER |
180 | COMMON_VPATH += $(DRIVER_PATH)/eeprom | 180 | COMMON_VPATH += $(DRIVER_PATH)/eeprom |
181 | COMMON_VPATH += $(PLATFORM_PATH)/$(PLATFORM_KEY)/$(DRIVER_DIR)/eeprom | ||
181 | SRC += eeprom_driver.c eeprom_stm32_L0_L1.c | 182 | SRC += eeprom_driver.c eeprom_stm32_L0_L1.c |
182 | else | 183 | else |
183 | # This will effectively work the same as "transient" if not supported by the chip | 184 | # This will effectively work the same as "transient" if not supported by the chip |