summaryrefslogtreecommitdiff
path: root/src/storage.h
blob: 5366ed9a86c721ee9382fe69d6d684ededac9651 (plain)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#include <stdlib.h>

#define I2C_EEPROM_ADDR 0x50

class Storage {
	private:
		uint8_t num_anims;
		uint8_t first_free_page;
		uint8_t i2c_start_write(void);
		uint8_t i2c_start_read(void);
		void i2c_stop(void);
		uint8_t i2c_send(uint8_t len, uint8_t *data);
		uint8_t i2c_receive(uint8_t len, uint8_t *data);
		uint8_t i2c_read(uint16_t addr, uint8_t len, uint8_t *data);
		uint8_t i2c_write(uint16_t addr, uint8_t len, uint8_t *data);

		enum I2CStatus : uint8_t {
			I2C_OK,
			I2C_START_ERR,
			I2C_ADDR_ERR
		};

	public:
		Storage() { num_anims = 0; first_free_page = 0;};

		/**
		 * Enable the storage hardware: Configures the internal I2C
		 * module and reads the number of stored animations from the
		 * EEPROM.
		 */
		void enable();

		/**
		 * Prepares the storage for a complete overwrite by setting the
		 * number of stored animations to zero. The next save operation
		 * will get pattern id 0 and overwrite the first stored pattern.
		 *
		 * This function itself does not write anything to the EEPROM.
		 */
		void reset();

		/**
		 * Checks whether the EEPROM contains animathion data.
		 *
		 * @return true if the EEPROm contains valid-looking data
		 */
		bool hasData();

		/**
		 * Load pattern from EEPROM.
		 *
		 * @param idx pattern index
		 * @param data pointer to data structure for the pattern. Must be
		 *        at least 256 Bytes
		 */
		void load(uint16_t idx, uint8_t *data);

		/**
		 * Save (possibly partial) pattern on the EEPROM. 64 bytes of
		 * dattern data will be read and stored, regardless of the
		 * pattern header.
		 *
		 * @param data pattern data. Must be at least 64 Bytes
		 */
		void save(uint8_t *data);

		/**
		 * Continue saving a pattern on the EEPROM. Appends 64 bytes of
		 * pattern data after the most recently written block of data
		 * (i.e., to the pattern which is currently being saved).
		 *
		 * @param data pattern data. Must be at least 64 Bytes
		 */
		void append(uint8_t *data);
};

extern Storage storage;