summaryrefslogtreecommitdiffstatshomepage
path: root/stm/storage.h
blob: 8a8459c9ee2dd13a4b4bccf30dd37b36c255f969 (plain) (blame)
1
2
3
4
5
6
void storage_init(void);
uint32_t storage_get_block_size(void);
uint32_t storage_get_block_count(void);
void storage_flush(void);
bool storage_read_block(uint8_t *dest, uint32_t block);
bool storage_write_block(const uint8_t *src, uint32_t block);