-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathEEPROMAnything.h
40 lines (36 loc) · 1.33 KB
/
EEPROMAnything.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#ifndef _eepromanything_h_
#define _eepromanything_h_
#include <avr/eeprom.h>
// Source: http://playground.arduino.cc/Code/EEPROMWriteAnything
// Modified to use the standard eeprom library and added 'eeprom_busy_wait()'
// Also added EEPROM_updateAnything to limit number of write/erase cycles
// By: Krisitan Lauszus, TKJ Electronics
template <class T> uint16_t EEPROM_writeAnything(uint16_t addr, const T& value) {
eeprom_busy_wait(); // Wait until the eeprom is ready
const uint8_t *p = (const uint8_t*)(const void*)&value;
uint16_t i;
for (i = 0; i < sizeof(value); i++)
eeprom_write_byte((uint8_t*)addr++, *p++);
return i;
}
template <class T> uint16_t EEPROM_updateAnything(uint16_t addr, const T& value) {
eeprom_busy_wait(); // Wait until the eeprom is ready
const uint8_t *p = (const uint8_t*)(const void*)&value;
uint16_t i;
for (i = 0; i < sizeof(value); i++) {
if (eeprom_read_byte((uint8_t*)addr) != *p) // Limits number of write/erase cycles
eeprom_write_byte((uint8_t*)addr, *p);
addr++;
p++;
}
return i;
}
template <class T> uint16_t EEPROM_readAnything(uint16_t addr, T& value) {
eeprom_busy_wait(); // Wait until the eeprom is ready
uint8_t *p = (uint8_t*)(void*)&value;
uint16_t i;
for (i = 0; i < sizeof(value); i++)
*p++ = eeprom_read_byte((uint8_t*)addr++);
return i;
}
#endif