Fix compile error with SD_FIRMWARE_UPDATE (#12462)

This commit is contained in:
Ludy
2018-11-18 04:13:36 +01:00
committed by Scott Lahteine
parent 779b2709ec
commit 22d7fed60a
5 changed files with 10 additions and 7 deletions

View File

@ -23,7 +23,7 @@
#include "../../inc/MarlinConfig.h"
#if ENABLED(EEPROM_SETTINGS)
#if ENABLED(EEPROM_SETTINGS) || ENABLED(SD_FIRMWARE_UPDATE)
#include "../shared/persistent_store_api.h"
@ -64,5 +64,5 @@ bool PersistentStore::read_data(int &pos, uint8_t* value, size_t size, uint16_t
size_t PersistentStore::capacity() { return E2END + 1; }
#endif // EEPROM_SETTINGS
#endif // EEPROM_SETTINGS || SD_FIRMWARE_UPDATE
#endif // __AVR__