-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflash.h
32 lines (30 loc) · 955 Bytes
/
flash.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
* @brief Write a full page to the flash device
*
* This function writes a full page (512 bytes) to the flash device.
*
* @param page The page number to write
* @param data The data buffer to be written
* @return 0 = ok , -1 = argument error
*/
int flash_write(unsigned int page, unsigned char * data);
/**
* @brief Read a full page from the flash device
*
* This function reads a full page (512 bytes) from the flash device.
*
* @param page The page number to read
* @param data Pointer to the buffer to be filled with the data
* @return 0 = ok , -1 = argument error
*/
int flash_read(unsigned int page, unsigned char * data);
/**
* @brief Erase a sector in the flash device
*
* This function erases a full sector (16K bytes) from the flash device. After a sector
* is erased all its bits are set to logic 1
*
* @param sector The sector number to erase
* @return 0 = ok , -1 = argument error
*/
int flash_erase(unsigned int sector);