PaulStoffregen 8a1d7d3453 Update Readme | 9 lat temu | |
---|---|---|
examples/TestHardware | 9 lat temu | |
README.md | 9 lat temu | |
SerialFlash.h | 9 lat temu | |
SerialFlashChip.cpp | 9 lat temu | |
SerialFlashDirectory.cpp | 9 lat temu | |
keywords.txt | 9 lat temu |
SerialFlash provides low-latency, high performance access to SPI Flash memory with a filesystem-like interface. Familiar file-based functions, similar to the SD library, are used to access data.
In-progress file write and erase operations do NOT block read access on other files. SerialFlash automatically allocates files with Flash page and sector awareness, and supports suspending in-progress write and erase operations, to minimize read latency even while the Flash memory is “busy” writing data.
Performance oriented design does impose some usage limitations. Files are created with a fixed size which can never change or grow. Once created, files can not be renamed or deleted (except for erasing the entire chip). Files begin with all bytes erased (255). Each byte may be written only once. Files created as erasable may be fully erased, to allow new data to be written. Best performance is achieved by writing in 256 byte chunks, though individual bytes may be written.
Winbond W25Q128FV is the only chip actually tested so far.
Spansion and Micron SPI Flash chip testing is planned…
TODO: add a list of chips, with verified, should work, or unsupported status.
SerialFlash automatically detects SPI Flash chip type and capacity to automatically handle differences between supported chips.
SerialFlashFile file;
file = SerialFlash.open("filename.bin");
if (file) { // true if the file exists
char buffer[256];
file.read(buffer, 256);
file.size();
file.position()
file.seek(number);
file.write(buffer, 256);
Several limitations apply to writing. Only previously unwritten portions of the file may be written. Files sizes can never change. Writes may only be done within the file’s original size.
file.erase(); // not yet implemented
Only files created for erasing can be erased. The entire file is erased to all 255 (0xFF) bytes.
SerialFlash.create(filename, size);
SerialFlash.createErasable(filename, size);
New files must be created using these funtions. Each returns true if the file is successfully created, or false if not enough space is available.
Once created, files can never be renamed or deleted. The file’s size can never change. Writing additional data can NOT grow the size of file.
Files created for erasing automatically increase in size to the nearest number of erasable blocks, resulting in a file that may be 4K to 128K larger than requested.
SerialFlash.opendir();
SerialFlash.readdir(buffer, buflen, filelen);
A list of files stored in the Flash can be accessed with readdir(), which returns true for each file, or false to indicate no more files.
SerialFlash.erase();
while (SerialFlash.ready() == false) {
// wait, 30 seconds to 2 minutes for most chips
}