ASCEND Flight Software
Loading...
Searching...
No Matches
FlashStorage.h
Go to the documentation of this file.
1#ifndef FLASH_STORAGE_H
2#define FLASH_STORAGE_H
3
4#include <SPI.h>
5
6#include <vector>
7
8#include "PayloadConfig.h"
9#include "SparkFun_SPI_SerialFlash.h"
10#include "Storage.h"
11
12struct FileHeader {
13 uint32_t file_number;
14 uint32_t start_address;
15 uint32_t end_address;
16};
17
18class FlashStorage : public Storage {
19 private:
20#if FLASH_SPI1
21 SPIClassRP2040 flash_spi_1 = SPIClassRP2040(spi1, SPI1_MISO_PIN, FLASH_CS_PIN,
23#endif
24
25 inline static const uint32_t FILE_HEADER = 0xDEADBEEF; // 4 bytes
26 inline static const uint32_t MAX_SIZE =
27 15'000'000; // 16 MByte (less for safety)
28 inline static const uint32_t SECTOR_SIZE = 4'096; // 4KB
29 inline static const uint32_t START_ADDRESS = 0;
30
31 std::vector<FileHeader> file_data;
32 SFE_SPI_FLASH flash;
33 uint32_t address = 0;
34 bool active_file = false;
35
36 void indexFlash();
37 void loadAddress();
38 bool isSectorEmpty();
39
40 bool readFileHeader();
41 void writeFileHeader();
42
43 public:
45 bool verify() override;
46 void store(String) override;
47 void storePacket(uint8_t*) override;
48 void dump();
49 bool reinitFlash();
50 void erase();
51 void downloadFile(int);
52 void getStatus();
53 void atomicStore(String data);
54 void removeFile(uint32_t file_number);
56};
57
58#endif
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
Definition FlashStorage.h:12
uint32_t end_address
Definition FlashStorage.h:15
uint32_t file_number
Definition FlashStorage.h:13
uint32_t start_address
Definition FlashStorage.h:14