2013-10-23 15:39:20 -04:00
|
|
|
void storage_init(void);
|
|
|
|
uint32_t storage_get_block_size(void);
|
|
|
|
uint32_t storage_get_block_count(void);
|
2013-12-10 19:38:40 -05:00
|
|
|
bool storage_needs_flush(void);
|
2013-10-23 15:39:20 -04:00
|
|
|
void storage_flush(void);
|
2013-10-18 18:44:05 -04:00
|
|
|
bool storage_read_block(uint8_t *dest, uint32_t block);
|
|
|
|
bool storage_write_block(const uint8_t *src, uint32_t block);
|