EEPROM Library

Most Arduino boards has real EEPROM: memory whose values are kept when the board is turned off (like a tiny hard drive), but the 86Duino not. Instead, we implement virtual EEPROM on 86Duino using two approaches: one realizing a 16 KB virtual EEPROM in the on-board SPI flash with an advanced virtual EEPROM algorithm, and the other realizing a 200-byte virtual EEPROM using the on-board CMOS memory.

This library enables you to read and write bytes in these virtual EEPROM.

Functions

read()
write()
setBank()

Note

When you use the 86Duino SysImage tool to update the 86Duino’s Firmware system in the on-board flash, the content of the two virtual EEPROM will simultaneously be earsed.


Libraries Reference Home

The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.