19 lines
361 B
C
19 lines
361 B
C
#include "flash.h"
|
|
|
|
|
|
/* Desc:Programs buffer's data onto cart memory
|
|
* Pre: Sector/Chip must be erased if required
|
|
* buffer elements must be updated to designate how to program
|
|
* Post:page flashed/programmed to designated memory.
|
|
* Rtn: SUCCESS or ERROR# depending on if there were errors.
|
|
*/
|
|
uint8_t flash_page( buffer *buff ) {
|
|
|
|
return SUCCESS;
|
|
|
|
|
|
}
|
|
|
|
|
|
|