9#include "SparkFun_SPI_SerialFlash.h"
46 void store(String)
override;
Central location for pinout and config defines.
#define SPI1_MOSI_PIN
SPI1 MOSI Pin.
Definition PayloadConfig.h:75
#define SPI1_SCK_PIN
SPI1 SCK Pin.
Definition PayloadConfig.h:73
#define SPI1_MISO_PIN
SPI1 MISO Pin.
Definition PayloadConfig.h:71
#define FLASH_CS_PIN
Flash chip SPI CS Pin.
Definition PayloadConfig.h:67
int attempt_number
Definition Device.h:19
Definition FlashStorage.h:18
void loadAddress()
Locates the next available write address in flash.
Definition FlashStorage.cpp:65
void getStatus()
Prints the current status of the flash storage.
Definition FlashStorage.cpp:414
void writeFileHeader()
Writes the file header to the start of a new sector.
Definition FlashStorage.cpp:98
void store(String) override
Stores a string in flash memory, appending a newline at the end.
Definition FlashStorage.cpp:224
static const uint32_t MAX_SIZE
Definition FlashStorage.h:26
SFE_SPI_FLASH flash
Definition FlashStorage.h:32
static const uint32_t START_ADDRESS
Definition FlashStorage.h:29
void checkFreeSpaceWarnings()
Checks available flash space and logs warnings when thresholds are reached.
Definition FlashStorage.cpp:544
void atomicStore(String data)
Writes a string to flash atomically.
Definition FlashStorage.cpp:442
bool active_file
Definition FlashStorage.h:34
uint32_t address
Definition FlashStorage.h:33
void indexFlash()
Locates the next available file block & tracks existing files.
Definition FlashStorage.cpp:20
bool isSectorEmpty()
Determines if the current sector is empty.
Definition FlashStorage.cpp:82
bool readFileHeader()
Determines if the first 4 bytes of a sector are a file header.
Definition FlashStorage.cpp:130
static const uint32_t FILE_HEADER
Definition FlashStorage.h:25
void erase()
Erases all data stored in flash memory.
Definition FlashStorage.cpp:308
static const uint32_t SECTOR_SIZE
Definition FlashStorage.h:28
bool reinitFlash()
Definition FlashStorage.cpp:191
void removeFile(uint32_t file_number)
Deletes a file by erasing the sectors it occupies.
Definition FlashStorage.cpp:496
void downloadFile(int)
Downloads data from flash memory with progress tracking.
Definition FlashStorage.cpp:348
bool verify() override
Verifies the flash connection and prepares for data storage.
Definition FlashStorage.cpp:154
std::vector< FileHeader > file_data
Definition FlashStorage.h:31
FlashStorage()
Constructs a new FlashStorage object.
Definition FlashStorage.cpp:10
void storePacket(uint8_t *) override
Stores a packet of bytes in flash memory.
Definition FlashStorage.cpp:254
void dump()
Dumps the contents of flash memory to the serial monitor. [DEPRECIATED].
Definition FlashStorage.cpp:287
Parent class for all data storage devices (sd card, radio, etc)
Definition Storage.h:13