refactor flashing code into flash.h, so we can share it between platforms

This commit is contained in:
bushing 2010-01-04 05:11:08 +00:00
parent 204c85958c
commit 6e4d4ee609
5 changed files with 357 additions and 623 deletions

15
client/flash.h Normal file
View file

@ -0,0 +1,15 @@
struct partition {
int start;
int end;
int precious;
const char *name;
};
void FlushPrevious(int translate);
void GotByte(uint32_t where, uint8_t which, int start_addr, int end_addr, int translate);
unsigned int EnterFlashState(void);
int PrepareFlash(struct partition *p, const char *filename, unsigned int state);
int find_next_area(const char *str, int *offset, int *length);
#define PHYSICAL_FLASH_START 0x100000
void do_flash(char **argv);