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

📄 config.h

📁 In-system Programming with C51 MCU and External Flash
💻 H
字号:
/*H***************************************************************************
* NAME: myfile.h           
*----------------------------------------------------------------------------
* PURPOSE: 
*****************************************************************************/

#ifndef _CONFIG_H_
#define _CONFIG_H_

/*_____ I N C L U D E S ____________________________________________________*/
#include <reg51.h>
#include "compiler.h"

/* ______________________ User Configuration Section ______________________ */

#define HAVE_XRAM               /* Target chip: T89C51RD2 with on-chip XRAM */

/* ______________________ User Configuration Section ______________________ */
        

#ifdef HAVE_XRAM                /* If on-chip XRAM, disable the XRAM to access to the entire */
#define NO_XDATA 0x02           /* FLASH when mapped in the data area */ 
Sfr (AUXR, 0x8E);
#endif

#endif /* _CONFIG_H_ */


⌨️ 快捷键说明

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