Browse Source

Fix ESP32 eeprom flag

vanilla_fb_2.0.x
Scott Lahteine 4 years ago
parent
commit
f263782f1b
  1. 4
      Marlin/src/HAL/ESP32/eeprom_impl.cpp
  2. 6
      Marlin/src/HAL/ESP32/inc/Conditionals_post.h

4
Marlin/src/HAL/ESP32/eeprom_impl.cpp

@ -24,7 +24,7 @@
#include "../../inc/MarlinConfig.h"
#if ENABLED(EEPROM_SETTINGS) && DISABLED(FLASH_EEPROM_EMULATION)
#if USE_WIRED_EEPROM
#include "../shared/eeprom_api.h"
#include <EEPROM.h>
@ -59,5 +59,5 @@ bool PersistentStore::read_data(int &pos, uint8_t* value, size_t size, uint16_t
size_t PersistentStore::capacity() { return EEPROM_SIZE; }
#endif // EEPROM_SETTINGS
#endif // USE_WIRED_EEPROM
#endif // ARDUINO_ARCH_ESP32

6
Marlin/src/HAL/ESP32/inc/Conditionals_post.h

@ -21,7 +21,7 @@
*/
#pragma once
// If no real EEPROM, Flash emulation, or SRAM emulation is available fall back to SD emulation
#if ENABLED(EEPROM_SETTINGS) && NONE(USE_WIRED_EEPROM, FLASH_EEPROM_EMULATION, SRAM_EEPROM_EMULATION)
#define SDCARD_EEPROM_EMULATION
#undef USE_WIRED_EEPROM
#if ENABLED(EEPROM_SETTINGS) && DISABLED(FLASH_EEPROM_EMULATION)
#define USE_WIRED_EEPROM 1
#endif

Loading…
Cancel
Save