ads1240通讯程序

源代码在线查看: eeprom.h

软件大小: 21 K
上传用户: lhp2rjj
关键词: 1240 ads 通讯程序
下载地址: 免注册下载 普通下载 VIP

相关代码

				#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
				
							

相关资源