diff options
Diffstat (limited to 'src/storage.h')
-rw-r--r-- | src/storage.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/storage.h b/src/storage.h index 10cdbc5..fd7b0ad 100644 --- a/src/storage.h +++ b/src/storage.h @@ -13,9 +13,8 @@ class Storage { int8_t i2c_receive(uint8_t len, uint8_t *data); int8_t i2c_read(uint16_t addr, uint8_t len, uint8_t *data); int8_t i2c_write(uint16_t addr, uint8_t len, uint8_t *data); - // TODO "file system" housekeeping (index of first free page) public: - Storage() { num_anims = 0xff; first_free_page = 0;}; + Storage() { num_anims = 0; first_free_page = 0;}; /** * Enable the storage hardware: Configures the internal I2C |