includes.h
来自「这是一个车用电机调速器的AVR单片机的整套C语言的源代码」· C头文件 代码 · 共 52 行
H
52 行
/********************************************************************************************************
* 文 件 名 : 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 + =
减小字号Ctrl + -
显示快捷键?