Browse Source

Remove QSPI from "wired" EEPROM type

Scott Lahteine 5 years ago
parent
commit
9b820d71a6
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/src/inc/Conditionals_post.h

+ 2
- 2
Marlin/src/inc/Conditionals_post.h View File

39
 #if ENABLED(EEPROM_SETTINGS)
39
 #if ENABLED(EEPROM_SETTINGS)
40
   // EEPROM type may be defined by compile flags, configs, HALs, or pins
40
   // EEPROM type may be defined by compile flags, configs, HALs, or pins
41
   // Set additional flags to let HALs choose in their Conditionals_post.h
41
   // Set additional flags to let HALs choose in their Conditionals_post.h
42
-  #if ANY(FLASH_EEPROM_EMULATION, SRAM_EEPROM_EMULATION, SDCARD_EEPROM_EMULATION)
42
+  #if ANY(FLASH_EEPROM_EMULATION, SRAM_EEPROM_EMULATION, SDCARD_EEPROM_EMULATION, QSPI_EEPROM)
43
     #define USE_EMULATED_EEPROM 1
43
     #define USE_EMULATED_EEPROM 1
44
-  #elif ANY(I2C_EEPROM, SPI_EEPROM, QSPI_EEPROM)
44
+  #elif ANY(I2C_EEPROM, SPI_EEPROM)
45
     #define USE_WIRED_EEPROM    1
45
     #define USE_WIRED_EEPROM    1
46
   #else
46
   #else
47
     #define USE_FALLBACK_EEPROM 1
47
     #define USE_FALLBACK_EEPROM 1

Loading…
Cancel
Save