mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2024-11-29 00:44:13 +01:00
16 lines
202 B
C
16 lines
202 B
C
|
#ifndef FLASH_H__
|
||
|
#define FLASH_H__
|
||
|
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
|
||
|
#define FLASH_ERASE_BLOCK_SIZE (128 * 1024)
|
||
|
|
||
|
|
||
|
void flash_wait_busy (void);
|
||
|
void flash_erase_block (uint32_t offset);
|
||
|
|
||
|
|
||
|
#endif
|