SPIMemory
Arduino library for Flash Memory Chips (SPI based only). Formerly SPIFlash
Install / Use
/learn @Marzogh/SPIMemoryREADME
SPIMemory

Arduino library for Flash & FRAM Memory Chips (SPI based only)
<sup> Download the latest stable release from here. Please report any bugs in issues.</sup>
This Arduino library is for use with flash and FRAM memory chips that communicate using the SPI protocol. In its current form it supports identifying the flash/FRAM chip and its various features; automatic address allocation and management; writing and reading a number of different types of data, ranging from 8-bit to 32-bit (signed and unsigned) values, floats, Strings, arrays of bytes/chars and structs to and from various locations; sector, block and chip erase; and powering down for low power operation.
<hr>IDE Compatibility (actually tested with)
- Arduino IDE v1.5.x
- Arduino IDE v1.6.x
- Arduino IDE v1.8.x
Platform compatibility
| Micro controllers | Dev boards tested with | Notes | | ----------------- | ---------------------- | ----- | | ATmega328P | Arduino Uno, Arduino Micro, <br> Arduino Fio, Arduino Nano | - | | ATmega32u4 | Arduino Leonardo, Arduino Fio v3 | - | | ATmega2560 | Arduino Mega | - | | ATSAMD21G18 (ARM Cortex M0+) | Adafruit Feather M0, <br> Adafruit Feather M0 Express, <br> Adafruit ItsyBitsy M0 Express | - | | AT91SAM3X8E (ARM Cortex M3) | Arduino Due | - | | nRF52832 (ARM Cortex M4F) | Adafruit nRF52 Feather | - | | ATSAMD51J19 (ARM Cortex M4) | Adafruit Metro M4 | - | | STM32F091RCT6 | Nucleo-F091RC | | | STM32L0 | Nucleo-L031K6 | | | ESP8266 | Adafruit ESP8266 Feather, <br> Sparkfun ESP8266 Thing | - | | ESP32 | Adafruit ESP32 Feather, <br> Sparkfun ESP32 Thing | Onboard flash memory. Refer to footnote<sup>£</sup> below. | | Simblee | Sparkfun Simblee | - |
<sup>£ </sup><sub> ESP32 boards usually have an SPI Flash already attached to their default SS pin, so the user has to explicitly declare the ChipSelect pin being used with the constructor</sub>
Flash memory compatibility - Actually tested with
| Manufacturer | Flash IC | Notes | | ------------ | -------- | ----- | | Winbond | W25Q16BV <br> W25Q64FV <br> W25Q64JV <br> W25Q80BV <br> W25Q256FV | Should work with the W25QXXXBV, W25QXXXFV & <br> W25QXXXJV families | | Microchip | SST25VF064C <br> SST26VF016B <br> SST26VF032B <br> SST26VF064B | Should work with the SST25 & SST26 families | | Cypress/Spansion | S25FL032P <br> S25FL116K <br> S25FL127S | Should work with the S25FL family | | ON Semiconductor | LE25U40CMC | | | AMIC| A25L512A0 | | | Micron| M25P40 | | | Adesto| AT25SF041 | | | Macronix| MX25L4005 <br> MX25L4005 | | | Giga devices| GD25Q16C | (Used on the Adafruit ItsyBitsy M0 Express) |
Should work with any flash memory that is compatible with the SFDP standard as defined in JESD216B
<hr>FRAM memory compatibility - Actually tested with
| Manufacturer | Flash IC | Notes | | ------------ | -------- | ----- | | Cypress/Spansion | FM25W256 | Should work with the FM25W family |
<hr>Installation
Option 1
- Open the Arduino IDE.
- Go to Sketch > Include Library > Manage libraries.
- Search for SPIMemory.
- Install the latest version.
Option 2
- Click on the 'Clone or download' button above the list of files on this <a href = "https://github.com/Marzogh/SPIMemory/tree/master"> page </a>.
- Select Download ZIP. A .zip file will download to your computer.
- Unzip the archive and rename resulting folder to 'SPIMemory'
- Move the folder to your libraries folder (~/sketches/libraries)
Usage
SPIFlash
-
The library is called by declaring the
SPIFlash flash(csPin*)constructor where 'flash' can be replaced by a user constructor of choice and 'csPin' is the Chip Select pin for the flash module.<sub>* Optional. Do not include csPin if using the default slave select pin for your board.</sub>
-
Every version of the library >= v3.0.0 supports the ability to use any of multiple SPI interfaces (if your micro-controller supports them). Switching to use another SPI interface is done by calling
SPIFlash flash(csPin, &SPI1);(or &SPI2 and so on), instead ofSPIFlash flash(csPin).<sub>* NOTE: This is currently only supported on the SAMD and STM32 architectures.</sub>
-
An alternate version
SPIFlash flash (SPIPinsArray)of the constructor can be used (only with ESP32 board as of now) to enable the use of custom SPI pins.SPIPinsArrayhas to be a 4 element array containing the custom SPI pin numbers (as signed integers - int8_t) in the following order - sck, miso, mosi, ss. -
Also make sure to include
flash.begin(CHIPSIZE*)invoid setup(). This enables the library to detect the type of flash chip installed and load the right parameters.<sub>* Optional</sub>
Note on SFDP discovery
As of v3.2.1, SFDP parameter discovery is an user controlled option. To get the library to work with SFDP compatible flash memory chips that are not officially supported by the library, the user must uncomment '//#define USES_SFDP' in 'SPIMemory.h'.
Notes on Address overflow and Error checking
-
The library has Address overflow enabled by default - i.e. if the last address read/written from/to, in any function, is 0xFFFFF then, the next address read/written from/to is 0x00000. This can be disabled by uncommenting
#define DISABLEOVERFLOWin SPIMemory.h. (Address overflow only works for Read / Write functions. Erase functions erase only a set number of blocks/sectors irrespective of overflow.) -
All write functions have Error checking turned on by default - i.e. every byte written to the flash memory will be checked against the data stored on the Arduino. Users who require greater write speeds can disable this function by setting an optional last 'errorCheck' argument in any write function to NOERRCHK - For eg. call the function
writeByte(address, *data_buffer, NOERRCHK)instead ofwriteByte(address, *data_buffer).
SPIFram <sup>^</sup>
-
The library is called by declaring the
SPIFram fram(csPin*)constructor where 'fram' can be replaced by a user constructor of choice and 'csPin' is the Chip Select pin for the fram module.<sub>* Optional. Do not include csPin if using the default slave select pin for your board.</sub>
-
Every version of the library >= v3.0.0 supports the ability to use any of multiple SPI interfaces (if your micro-controller supports them). Switching to use another SPI interface is done by calling
SPIFram fram(csPin, &SPI1);(or &SPI2 and so on), instead ofSPIFram fram(csPin).<sub>* NOTE: This is currently only officially supported on the SAMD and STM32 architectures.</sub>
-
Also make sure to include
fram.begin(CHIPSIZE*)invoid setup(). This enables the library to detect the type of fram chip installed and load the right parameters.
<sup>^</sup> <sub> Currently in BETA. The methods in SPIFram are not final and subject to change over the next few revisions.</sub>
The library enables the following functions:
<hr>Non-Read/Write functions
<hr>begin(_chipsize)
setClock(clockSpeed)
error(_verbosity)
getManID()
getJEDECID()
getUniqueID()
getAddress(sizeOfData)
sizeofStr()
getCapacity()
getMaxPage()
functionRunTime()
<hr>
Read commands
<hr> <sub> All read commands take a last boolean argument 'fastRead'. This argument defaults to FALSE, but when set to TRUE carries out the Fast Read instruction so data can be read at up to the memory's maximum frequency. </sub> <sub> All read commands only take a 32-bit address variable instead of the optional 16-bit page number & 8-bit offset variables in previous versions of the library (< v3.0.0) </sub>readAnything(address, value)
readByte(address)
readChar(address)
readWord(address)
readShort(address)
readULong(address)
readLong(address)
readFloat(address)
readStr(address, outputStr)
readAnything(address, value)
<hr>
Write commands
<hr> <sub> All write commands take a boolean last argument 'errorCheck'. This argument defaults to TRUE, but when set to FALSE will more than double the writing speed. This however comes at the cost of checking for writing errors. Use with care. </sub><sub> All write commands only take a 32-bit address variable instead of the optional 16-bit page number & 8-bit offset variables in previous versions of the library (< v3.0.0) </sub>
