blob: 9c69ad46a53679f7ad4cbadc81f7def4541fcf3c [file] [log] [blame]
Jörg Hohensohn6a4e4c82003-11-30 11:37:43 +00001#ifndef _FLASH_H
2#define _FLASH_H
3
4int ReadID(tUartHandle serial_handle, UINT32 base, UINT8* pManufacturerID, UINT8* pDeviceID);
5int EraseSector(tUartHandle serial_handle, UINT32 address);
6int EraseChip(tUartHandle serial_handle, UINT32 base);
7int ProgramBytes(tUartHandle serial_handle, UINT32 address, UINT8* pData, UINT32 size);
8
Jens Arnoldc519e632004-11-19 22:44:45 +00009#endif
10