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

📄 includes.h

📁 这是一个车用电机调速器的AVR单片机的整套C语言的源代码
💻 H
字号:
/********************************************************************************************************
* 文 件 名 : includes.h
* 程 序 员 : (CaiJie) hnclcj@gmail.com
*                             (c) Copyright 2007-2007, CaiJie
*                                  All Rights Reserved
* 创建日期 : 
* 说    明 : 1>
* 修改日期 :
* 修改版本 :
* 说    明 :
********************************************************************************************************/


#ifndef _INCLUDES_H_
#define _INCLUDES_H_


#include <math.h>
#include <stdio.h>
#include <stddef.h>
#include <string.h>
#include <stdlib.h>
#include <setjmp.h>
#include <inttypes.h>

#include <avr/io.h>
#include <avr/wdt.h>
#include <avr/sleep.h>
#include <avr/eeprom.h>
#include <avr/pgmspace.h>
#include <avr/interrupt.h>
#include <compat/deprecated.h>

#include "CPU.h"
#include "Bin.h"


#include "App_IO.h"
#include "App_Cfg.h"
#include "Eeprom.h"
#include ".\delay\delaytime.h"
#include "PWM.h"
#include "ICP.h"
#include "Timer.h"
#include "Tmr.h"


#endif
/********************************************************************************************************
*                                             End of File
********************************************************************************************************/

⌨️ 快捷键说明

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