Skip to content

The EEPROM Storage library provides the ability to access variables stored in EEPROM just as if they would stored in normal RAM.

License

Notifications You must be signed in to change notification settings

porrey/EEPROM-Storage

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EEPROM-Storage Library

Overview

This library is designed to work on both the Particle and the Arduino platforms.

The EEPROM Storage library provides the ability to access variables stored in EEPROM just as if they were stored in normal RAM. This makes it easy to create static variables that must be restored after a reboot and manage them in your code just like any other variable.

Once defined, a variable can be used in the same manner as its underlying type. For example, a variable defined as an integer (int) would be defined as shown below.

// ***
// *** Define i as an int with the default value of 0;
// ***
int i = 0;

// ***
// *** Set i to 12.
// ***
i = 12;

// ***
// *** Increment i.
// ***
i++;

// ***
// *** Set the value of a to the current value of i.
// ***
int a = i;

This is all very obvious to even the novice programmer but is used here to show the simplicity of the EEPROM Storage class. An integer variable stored in EEPROM would be defined and used in code as shown below.

// ***
// *** Define i as an int with a default value of 10 at EEPROM address 0.
// ***
EEPROMStorage<int> i(0, 10);

// ***
// *** Set i to 12.
// ***
i = 12;

// ***
// *** Increment i.
// ***
i++;

// ***
// *** Set the value of 'a' to the current value of i.
// ***
int a = i;

The first parameter of the constructor defines the address of the variable in EEPROM and the second parameter defines the default value when the EEPROM has been initialized or erased.

After the definition, the variable i can be used in the same way as before, but now the value is stored and retrieved to and from EEPROM.

EEPROM Performance

Write Limits

True EEPROM chips have write limits. The ATmega328P specifies a 100,000 write limit per address location. Other microcontrollers may have different limits. The Particle Photon implements its EEPROM (for compatibility with existing Arduino code) in static RAM and therefore does not have any write limits. It is good to know your microcontroller specifications when using the EEPROM.

Flash Memory vs. EEPROM Memory

The read and write speed of EEPROM is much slower than flash memory. When using these EEPROM variables, take note where and when you are reading them and also where and when you are writing them.

Writing Values

If you attempt to write the current value back to EEPROM, the library will not perform a write. Keep in mind there is extra code to perform this check which can cause some performance issues in your application.

Reading Values

Reading a value from EEPROM is faster than writing a value to EEPROM, but the read from EEPROM is slower than a variable read from flash memory.

Tips

The following are recommendations:

  1. Avoid excessive writes to a variable
  2. Avoid writes in loops where the same variable is updated several times. Instead save the value once at the end of the loop.
  3. Avoid reading or writing an EEPROM variable in time sensitive code.
  4. Know the write limits for your particular platform/microcontroller. Write your code in such a way that you will not exceed the limit in the lifetime of your application.

EEPROM Address

Memory Requirement

When defining an EEPROM Storage variable, it is important to understand the number of bytes required for the underlying type and ensuring that the variables are spaced appropriately so they do not collide.

Each variable requires enough memory to store the underlying type plus one additional byte for a checksum.

Consider the following variable definitions.

EEPROMStorage<uint8_t> v1(0, 0);      // 2 bytes (1 + 1 checksum), positions 0 and 1
EEPROMStorage<uint16_t>	 v2(2, 0);    // 3 bytes (2 + 1 checksum), positions 2, 3 and 4
EEPROMStorage<uint32_t>	 v3(5, 0);    // 5 bytes (4 + 1 checksum), positions 5, 6, 6, 8 and 9
EEPROMStorage<float> v4(10, 0.0);     // 5 bytes (4 + 1 checksum), positions 10, 11, 12, 13 and 14
EEPROMStorage<bool> v5(15, false);    // 2 bytes (1 + 1 checksum), positions 15, 16, 17, 18 and 19

The best way to think about EEPROM memory is to think about it as a large byte array with a base index of 0. In fact, the Arduino libraries constructs access to EEPROM in this manner.

In the above definitions, v1 is stored at position 0 and occupies two bytes. The first byte is for the data type and the second byte is for the one byte checksum. The variable v1 requires two bytes and thus occupies EEPROM memory locations 0 and 1,

The next variable, v2, is located in the position 2, immediately following v1, and occupies three bytes. The variables v3, v4 and v5 follow in the same contiguous manner, ensuring that no two variables occupy the same memory positions.

Aligning variables at the beginning of memory or aligning them in a contiguous nature is not required. This just makes it easier, in my opinion, to keep track. You are free to arrange them in any manner that suits your needs.

If you need help determining the proper address for your EEPROMStorage instances, open the example sketch called address.ino and follow the instructions.

Determining Data Type Size

If you are not sure of the memory requirement for a given data type, you can use the sizeof operator. User the Serial port to display the size of any data type.

Serial.print("The size of int is "); Serial.print(sizeof(int)); Serial.println(".");

When using the sizeof operator to determine the number of bytes to preserve remember to add one extra byte for the checksum.

To see a full demonstration of this, open the example sketch called sizeof.ino.

EEPROM Storage Initialization

When data has never been stored EEPROM on a micro-controller the memory is in an uninitialized state. Since each byte of memory must have a value between 0 and 255, it is not always possible to detect an uninitialized byte. This behavior could have unexpected side effects if you define a variable and fail to detect whether or not the instance has been initialized.

For this reason, the EEPROM Storage library uses a one-byte checksum to determine if the instance has been initialized or not. When an instance is constructed, a default value is specified. This default value is always returned until a value is explicitly written. The first time a value is written, the variable is initialized and its checksum is calculated. Each write operation to EEPROM will update the checksum.

Scope

It is important to note that since EEPROMStorage variables are stored in the micro-controllers EEPROM. The scope of these variables is always global. In fact, it is possible to instantiate more than one instance using the same address. Both instances will share the same value keeping the two instances in sync.

This behavior can be good and bad depending on your scenario. If two instances are created with a different base type, the result may be unexpected.

The EEPROMStorage variable never caches the value internally and will read the value from EEPROM each time it is requested.

Similarly, each time the instance value is updated it is written directly to EEPROM.

Usage

Declaration

An instance of EEPROMStorage can be declared globally, within a class or within a function keeping in mind, as stated previously, that the address controls whether two or more instances share the same value.

The syntax for declaration is as follows:

EEPROMStorage<data type> variableName(address, default value);

Data Type

Specifies the underlying data type for the given instance.

Address

Specifies the starting index in EEPROM where the value will be stored.

Default Value

Specifies the value that will be returned by the instance when the EEPROM memory location has not been initialized (initialization is determined by the checksum).

Example

To initialize an instance with an underlying data type of int located in position 50 of the EEPROM and a default value of 10, the syntax would be as follows:

EEPROMStorage<int> myInt(50, 10);

Assignment

Using the previous example, assigning a value to the instance is as simple as the assignment shown here.

myInt = 100; 

The EEPROMStorage class also defines a set() method that can be used.

myInt.set(100);

Retrieving

To get the instance value, simply assign it to a variable, as shown below,

int x = myInt;

or pass it as an argument in any function that takes an int argument as shown below.

Serial.print("myInt = "); Serial.println(myInt);

The EEPROMStorage class also defines a get() method that can be used.

int x = myInt.get();

LICENSE

Copyright 2017-2020 Daniel Porrey

Licensed under the LGPL-3.0 license

About

The EEPROM Storage library provides the ability to access variables stored in EEPROM just as if they would stored in normal RAM.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages