diff options
| author | Damien | 2013-10-18 23:44:05 +0100 |
|---|---|---|
| committer | Damien | 2013-10-18 23:44:05 +0100 |
| commit | 995b8aabb1ee786a4070d6d8392750ff878d53fa (patch) | |
| tree | 94a997dc8a4e6e89d048786fb6812a12bc99f4b8 /stm/storage.h | |
| parent | 5ac1b2efbd5dfb2a62fe984dc9dc8a7127fb5e82 (diff) | |
Partially implement proper flash storage.
Diffstat (limited to 'stm/storage.h')
| -rw-r--r-- | stm/storage.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/stm/storage.h b/stm/storage.h new file mode 100644 index 000000000..542329e4b --- /dev/null +++ b/stm/storage.h @@ -0,0 +1,4 @@ +void storage_init(); +void storage_flush(); +bool storage_read_block(uint8_t *dest, uint32_t block); +bool storage_write_block(const uint8_t *src, uint32_t block); |
