includes.h
2.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
*********************************************************************************************************
*
* 模块名称 : 头文件汇总
* 文件名称 : includes.h
* 版 本 : V1.0
* 说 明 : 当前使用头文件汇总
*
* 修改记录 :
* 版本号 日期 作者 说明
* V1.0 2015-08-02 Eric2013 首次发布
*
* Copyright (C), 2015-2020, 安富莱电子 www.armfly.com
*
*********************************************************************************************************
*/
#ifndef __INCLUDES_H__
#define __INCLUDES_H__
/*
*********************************************************************************************************
* 标准库
*********************************************************************************************************
*/
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
/*
*********************************************************************************************************
* 其它库
*********************************************************************************************************
*/
#include <cpu.h>
#include <lib_def.h>
#include <lib_ascii.h>
#include <lib_math.h>
#include <lib_mem.h>
#include <lib_str.h>
#include <app_cfg.h>
/*
*********************************************************************************************************
* OS和系统库
*********************************************************************************************************
*/
#include <os.h>
/*
*********************************************************************************************************
* APP / BSP
*********************************************************************************************************
*/
#include <bsp.h>
/*
*********************************************************************************************************
* 变量和函数
*********************************************************************************************************
*/
extern void TCPnetTest(void);
#endif
/***************************** 安富莱电子 www.armfly.com (END OF FILE) *********************************/