1
0
forked from M-Labs/artiq
artiq/soc/runtime/flash_storage.h
2015-04-27 11:39:19 +08:00

12 lines
276 B
C

/*
* Yann Sionneau <ys@m-labs.hk>, 2015
*/
#ifndef __FLASH_STORAGE_H
#define __FLASH_STORAGE_H
void write(char *key, void *buffer, unsigned int buflen);
unsigned int read(char *key, void *buffer, unsigned int buflen, unsigned int *remain);
#endif /* __FLASH_STORAGE_H */