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

📄 eeprom.h

📁 wind river提供的MPC8260的BSP典型代码
💻 H
字号:
/* eeprom.h - EEPROM NVRAM haeder file *//* Copyright 1984-2001 Wind River Systems, Inc. */#include "copyright_wrs.h"/*modification history--------------------01b,12oct01,g_h  Clean for T2.201a,15jun98,est	 Created*//*DESCRIPTIONThis file contains routines prototypes to access the eeprom NVRAM device.SEE ALSO:.pG "Configuration"*/#ifndef	__INCeepromh#define	__INCeepromh#ifdef __cplusplusextern "C" {#endif/* includes */#include "vxWorks.h"#include "memLib.h"#ifdef  NV_RAM_SIZE#define NV_RAM_SETUP    eepromNvRamSetup#undef  NV_RAM_WRITE#define NV_RAM_WRITE  	eepromWriteByte#undef  NV_RAM_READ#define NV_RAM_READ	eepromReadByte#endif/* function prototypes */void   eepromNvRamSetup ( void );UINT8  eepromReadByte ( int offset );STATUS eepromWriteByte ( int offset, UINT8 data );#ifdef __cplusplus}#endif#endif	/* __INCeepromh */

⌨️ 快捷键说明

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