⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 seeddm642_eeprom.h

📁 DSP DM642 eeprom检测程序
💻 H
字号:
/*
 *  Copyright 2003 by Spectrum Digital Incorporated.
 *  All rights reserved. Property of Spectrum Digital Incorporated.
 */
 
/*
 *  ======== evmdm642_eeprom.h ========
 *
 *  Interface for the CAT24WC256 I2C EEPROM on the EVMDM642 board
 */
#ifndef SEEDDM642_EEPROM_
#define SEEDDM642_EEPROM_

#ifdef __cplusplus
extern "C" {
#endif

#include <csl.h>

/* EEPROM definitions */
#define SEEDDM642_EEPROM_SIZE           0x4000
#define SEEDDM642_EEPROM_I2CADDR        0x57
 
/* Read data from a range in the EEPROM */
void SEEDDM642_EEPROM_write( I2C_Handle hI2C,
							Uint32 src, 
							Uint32 dst, 
							Uint32 length);

/* Write data to a data range in the EEPROM */
void SEEDDM642_EEPROM_read(I2C_Handle hI2C,
						  Uint32 src, 
						  Uint32 dst, 
						  Uint32 length);

#ifdef __cplusplus
}
#endif

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -