相关代码 |
|
#ifndef __EEPROM_H #define __EEPROM_H /* ** [file] ** eeprom.h ** [purpose] ** conatins the definitions for the Michrchip MCP24LC256 I2C EEPROM */ #define MCP24LC256_FIXED_ADDRESS 0xa0 int EEPromRead(int EEPromAddress, unsigned int StartAddress, unsigned int Length, char * Buffer); int EEPromWrite(int EEPromAddress, unsigned int StartAddress, unsigned int Length, char * Buffer); #endif
相关资源 |
|