?? evmdm642_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 EVMDM642_EEPROM_
#define EVMDM642_EEPROM_
#ifdef __cplusplus
extern "C" {
#endif
#include <csl.h>
/* EEPROM definitions */
#define EVMDM642_EEPROM_SIZE 0x8000
#define EVMDM642_EEPROM_I2CADDR 0x50
/* Read data from a range in the EEPROM */
void EVMDM642_EEPROM_read(Uint32 src, Uint32 dst, Uint32 length);
/* Write data to a data range in the EEPROM */
void EVMDM642_EEPROM_write(Uint32 src, Uint32 dst, Uint32 length);
#ifdef __cplusplus
}
#endif
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -