eeprom.h

来自「原创」· C头文件 代码 · 共 24 行

H
24
字号
/*
**  Header file : eeprom.h
*/

#ifndef		__EEPROM__H
#define		__EEPROM__H

// These work for devices with more than 256 bytes of EEPROM
int EEPROMwrite( int location, unsigned char);
unsigned char EEPROMread( int);

// These work for devices with 256 or less bytes of EEPROM
int _256EEPROMwrite( int location, unsigned char);
unsigned char _256EEPROMread( int);

#endif







⌨️ 快捷键说明

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