2014-11-27 10:10:24 -05:00
|
|
|
#ifndef __SPIFLASH_H
|
|
|
|
#define __SPIFLASH_H
|
|
|
|
|
|
|
|
void write_to_flash_page(unsigned int addr, unsigned char *c, unsigned int len);
|
|
|
|
void erase_flash_sector(unsigned int addr);
|
2015-04-27 01:42:32 -04:00
|
|
|
void write_to_flash(unsigned int addr, unsigned char *c, unsigned int len);
|
2014-11-27 10:10:24 -05:00
|
|
|
|
|
|
|
#endif /* __SPIFLASH_H */
|