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

📄 includes.h

📁 带时钟功能温度和湿度测量的仪器
💻 H
字号:
/*
文件名:  Includes.h
功能:    通用包含文件
单位:    浙江工商大学-信电学院
创建日期:2004-09-24
创建人:  Houseivan
修改人:  Houseivan
修改日期:2005-03-11
*/
#ifndef _INCLUDES_H
	#define _INCLUDES_H

	/*无条件包含文件*/
	#include"Typedef.h"
	#include"/SystemCommon/SystemConfig.h"
	#include"/SystemCommon/Constants.h"

/*根据开关条件选项包含文件*/
/*检查是否需要提供系统服务功能*/
#if _SYS_TASK>0
	#include"/SystemCommon/SystemService.h"
#endif

/*检查是否配置了显示器功能*/
#if _LCM_TASK>0
	#include"/LCMModule/LCMService.h"
#endif

/*检测是否配置了存储器功能*/
#if _E2PROM_TASK>0
	#include"/StoreModule/E2PROMService.h"
#endif

/*检测是否配置了时钟控制功能*/
#if _CLOCK_TASK>0
	#include"/ClockModule/ClockService.h"
#endif

/*检测是否配置了串行通讯功能*/
#if _SCOM_TASK>0
	#include"/ScomModule/ScomService.h"
	#include"/ScomModule/ScomInterrupt.h"
#endif

/*检测是否配置了传感器检测功能*/
#if _DETECT_TASK>0
	#include"/SensorModule/SensorService.h"
	#include<stdlib.h>
#endif

#endif 

⌨️ 快捷键说明

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