Browse Source

Fix Flash size (512KB) for STM32F103ZE (#21590)

pinchies 4 years ago
parent
commit
41eb5813e0
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/HAL/STM32F1/HAL.h

+ 1
- 1
Marlin/src/HAL/STM32F1/HAL.h View File

@@ -53,7 +53,7 @@
53 53
 // ------------------------
54 54
 
55 55
 #ifndef STM32_FLASH_SIZE
56
-  #if EITHER(MCU_STM32F103RE, MCU_STM32F103VE)
56
+  #if ANY(MCU_STM32F103RE, MCU_STM32F103VE, MCU_STM32F103ZE)
57 57
     #define STM32_FLASH_SIZE 512
58 58
   #else
59 59
     #define STM32_FLASH_SIZE 256

Loading…
Cancel
Save