includes.h

来自「NEC527多功能电表完整源代码,包括LCD驱动,显示,计量,存储,整个527驱」· C头文件 代码 · 共 53 行

H
53
字号
#ifndef _INCLUDES_H_
#define _INCLUDES_H_

#pragma sfr
#pragma DI
#pragma EI
#pragma NOP
#pragma HALT
#pragma STOP
#pragma bcd


#include "ana_uart.h"
#include "Global.h"
#include "Storage.h"
#include "Pindef.h"
#include "Protocol.h"
#include "Display.h"
#include "stdlib.h"
#include "string.h"
#include "Att702x.h"
#include "Sys_Event.h"
#include "sys_time.h"
#include "sys_main.h"
#include "PowerMeasure.h"
#include "PowerSupply.h"
#include "Alarm.h"
#include "math.h"
#include "uart.h"
#include "ir.h"
#include "i2c.h"
#include "data_flash.h"
#include "ext_io.h"
#include "pub_func.h"
#include "load_curve.h"
#include "Ext_RAM.h"

#ifndef __TI430__
#define __no_init
#endif

#ifdef __K0__
#define _DINT		DI
#define _EINT		EI
#define _NOP		NOP
#define __bcd_add_long(a,b) 	BcdAddOrSubLong(a,b,0)
#define __bcd_add_short(a,b)  BcdAddOrSubShort(a,b,0)

#endif

#endif

⌨️ 快捷键说明

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