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

📄 eeprom.h

📁 Keil uVision2
💻 H
字号:
/*
 *  This file contains the data defintions that are stored in EEPROM
 */

#ifndef DECLARE                    // if DECLARE is not defined
  #define DECLARE  extern          // variables are extern
#endif

struct esample  {
  char carray[20];
  int  iarray[20];
  long larray[20];
};

DECLARE struct esample far esample1;  // reserve space for esample1 struct
DECLARE struct esample far esample2;  // reserve space for esample2 struct
DECLARE char *         far etxt_ptr;  // pointer in EEPROM space


⌨️ 快捷键说明

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