summaryrefslogtreecommitdiff
path: root/tmk_core
diff options
context:
space:
mode:
authorDasky <32983009+daskygit@users.noreply.github.com>2021-10-08 22:26:57 +0100
committerGitHub <noreply@github.com>2021-10-08 22:26:57 +0100
commit7b753f227ada4c44df1e991b79e03fd6b56f7e69 (patch)
tree80852761b214140e293c997912fcedd12003816d /tmk_core
parent948023c70a006f65ba770f5d337cfafe9ed9e3a7 (diff)
Enable eeprom with F401xE ld (#14752)
Diffstat (limited to 'tmk_core')
-rw-r--r--tmk_core/common/chibios/eeprom_stm32_defs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tmk_core/common/chibios/eeprom_stm32_defs.h b/tmk_core/common/chibios/eeprom_stm32_defs.h
index cc64cda748..3499796264 100644
--- a/tmk_core/common/chibios/eeprom_stm32_defs.h
+++ b/tmk_core/common/chibios/eeprom_stm32_defs.h
@@ -32,7 +32,7 @@
# ifndef FEE_PAGE_COUNT
# define FEE_PAGE_COUNT 4 // How many pages are used
# endif
-# elif defined(STM32F401xC) || defined(STM32F405xG) || defined(STM32F411xE)
+# elif defined(STM32F401xC) || defined(STM32F401xE) || defined(STM32F405xG) || defined(STM32F411xE)
# ifndef FEE_PAGE_SIZE
# define FEE_PAGE_SIZE 0x4000 // Page size = 16KByte
# endif
@@ -49,7 +49,7 @@
# define FEE_MCU_FLASH_SIZE 128 // Size in Kb
# elif defined(STM32F303xC) || defined(STM32F401xC)
# define FEE_MCU_FLASH_SIZE 256 // Size in Kb
-# elif defined(STM32F103xE) || defined(STM32F411xE)
+# elif defined(STM32F103xE) || defined(STM32F401xE) || defined(STM32F411xE)
# define FEE_MCU_FLASH_SIZE 512 // Size in Kb
# elif defined(STM32F405xG)
# define FEE_MCU_FLASH_SIZE 1024 // Size in Kb
@@ -58,7 +58,7 @@
/* Start of the emulated eeprom */
#if !defined(FEE_PAGE_BASE_ADDRESS)
-# if defined(STM32F401xC) || defined(STM32F405xG) || defined(STM32F411xE)
+# if defined(STM32F401xC) || defined(STM32F401xE) || defined(STM32F405xG) || defined(STM32F411xE)
# ifndef FEE_PAGE_BASE_ADDRESS
# define FEE_PAGE_BASE_ADDRESS 0x08004000 // bodge to force 2nd 16k page
# endif