mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
8 lines
271 B
C
8 lines
271 B
C
#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);
|
|
void write_to_flash(unsigned int addr, unsigned char *c, unsigned int len);
|
|
|
|
#endif /* __SPIFLASH_H */
|