diff options
Diffstat (limited to 'flash.h')
-rw-r--r-- | flash.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -0,0 +1,11 @@ +#ifndef FLASH_H_ +#define FLASH_H_ + +#include "globals.h" + +void initFlash(FlashStruct *mem); +int readUserBlock(FlashStruct *mem); +void writeUserBlock(FlashStruct *mem, int addr, int numbytes); + +#endif + |