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

📄 includes.h

📁 AVRMEG32编写的一个项目代码,里面包含一般应用的模块.
💻 H
字号:

#ifndef PRJ_INC_H
#define PRJ_INC_H
	
//----- 要包含头文件 ----------------------------------------------------------
#include <avr/io.h>					// AVR I/O 定义
//#include <avr/signal.h>				// "signal" 宏定义
#include <avr/interrupt.h>			// 中断支持
#include <avr/wdt.h>				// 看门狗
#include <avr/pgmspace.h>			// PGM支持
#include <util/delay.h>				// delay
#include <avr/eeprom.h>				// eeprom
//#include <stdio.h>				// printf支持
#include <string.h> 				// 字符串操作
#include <stdlib.h> 				// 工具函数
#include <ctype.h>                  // tolower

#include "msgqueue\queue.h"		
#include "uartProc.h"
#include "inputProc.h"
#include "input.h"
#include "output.h"
#include "lib\global.h"
#include "lib\a2d.h"
#include "lib\uart.h"
#include "lib\rprintf.h"
//#include "lib\debug.h"
#include "lib\stxetx.h"
#include "sd2300.h"
#include "Sht.h"
#include "Delay.h"
//#include "font.h"
//#include "glcd.h"
#include  "key.h"
#include "wmlcd.h"
#include "wmdcbase.h"
#include "wmfun.h"
#include "wmdcdef.h"
#include "wmalrpro.h"
#include <math.h>
#endif

⌨️ 快捷键说明

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