You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
233 B
C
12 lines
233 B
C
7 years ago
|
#ifndef FLASH_H_
|
||
|
#define FLASH_H_
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void flash_init(void);
|
||
|
|
||
|
void flash_read(char *buf, uint32_t addr, unsigned int count);
|
||
|
void flash_write(const char *buf, uint32_t addr, unsigned int count);
|
||
|
|
||
|
#endif // FLASH_H_
|