/*
* ReadEErow prototype:
* Parameters Definition:
* Page: is the 8 most significant bits of the source address in EEPROM
* Offset: is 16 least significant bits of the source address in EEPROM
* DataOut: is the 16-bit address of the destination RAM location or array
* Size: is the number of words to read from EEPROM and is a value of 1 or 16
* Return Value:
* Function returns ERROREE (or -1) if Size is invalid
*/
extern int ReadEE(int Page, int Offset, int* DataOut, int Size);
一直找不到这个外部函数的具体程序。 |