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

📄 eeprom.h

📁 原创
💻 H
字号:
/*
**  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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -