QSPI EEPROM for SAMD51 (#17292)

This commit is contained in:
Giuliano Zaro
2020-03-27 23:29:17 +01:00
committed by GitHub
parent 3655e240f5
commit 129b270628
41 changed files with 413 additions and 179 deletions

View File

@ -21,6 +21,6 @@
*/
#pragma once
#include "../shared/persistent_store_api.h"
#include "../shared/eeprom_api.h"
#define FLASH_EEPROM_EMULATION

View File

@ -40,7 +40,7 @@
#if ENABLED(FLASH_EEPROM_EMULATION)
#include "persistent_store_api.h"
#include "eeprom_api.h"
extern "C" {
#include <lpc17xx_iap.h>

View File

@ -26,7 +26,7 @@
#if ENABLED(SDCARD_EEPROM_EMULATION)
#include "persistent_store_api.h"
#include "eeprom_api.h"
#include <chanfs/diskio.h>
#include <chanfs/ff.h>

View File

@ -21,6 +21,6 @@
*/
#pragma once
#if USE_EMULATED_EEPROM && NONE(SDCARD_EEPROM_EMULATION, SRAM_EEPROM_EMULATION)
#if USE_FALLBACK_EEPROM && NONE(SDCARD_EEPROM_EMULATION, SRAM_EEPROM_EMULATION)
#define FLASH_EEPROM_EMULATION
#endif