]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Fix emulated EEPROM start address on STM32F303 (#3819)
authorishtob <ishtob@gmail.com>
Fri, 31 Aug 2018 14:37:13 +0000 (10:37 -0400)
committerDrashna Jaelre <drashna@live.com>
Fri, 31 Aug 2018 14:37:13 +0000 (07:37 -0700)
MCU has 254 flash, changed 250 to 254. tested working on a planck rev6

tmk_core/common/chibios/eeprom_stm32.h

index d06d302665c1cc35d4415c7ca37053f19e381fff..68aa14f6d485d5e3d72d30125954af4d0ffeac22 100755 (executable)
@@ -48,7 +48,7 @@
     #elif defined (MCU_STM32F103RD)
         #define EEPROM_START_ADDRESS    ((uint32_t)(0x8000000 + 384 * 1024 - 2 * EEPROM_PAGE_SIZE))
     #elif defined (MCU_STM32F303CC)
-        #define EEPROM_START_ADDRESS    ((uint32_t)(0x8000000 + 250 * 1024 - 2 * EEPROM_PAGE_SIZE))
+        #define EEPROM_START_ADDRESS    ((uint32_t)(0x8000000 + 256 * 1024 - 2 * EEPROM_PAGE_SIZE))
     #else
         #error  "No MCU type specified. Add something like -DMCU_STM32F103RB to your compiler arguments (probably in a Makefile)."
     #endif