| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /**
- * @file FU6522_72.h
- * @version V1.0.0
- * @author FortiorTech Hardware Team
- * @date 2021-07-15 20:50:54
- * @brief This file contains ...
- *
- * @copyright Copyright(C) 2022, Fortior Technology Co., Ltd. All rights reserved.
- */
- #ifndef __FU6522_72_H__
- #define __FU6522_72_H__
- // Include external header file.
- #include <ctype.h> //ctype.h包含ASCII字符的分类和转换函数
- #include <intrins.h> //intrins.h包含空操作,左右位移等内嵌代码
- #include <math.h> //math.h包含算术运算的数学函数
- #include <setjmp.h> //setjmp.h包含setjump和longjump程序的jump_buf类型
- #include <stdarg.h> //stdarg.h包含访问函数参数的宏
- #include <stdio.h> //stdio.h包含流输入输出的函数原型
- #include <stdlib.h> //stdlib.h包含数据类型装换、产生随机数和存储器定位函数
- #include <string.h> //string.h包含字符串和缓存操作函数
- #include <FU6522_72_MCU.h>
- #include <FU6522_72_DMA.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- // Your code.
- // ...
- #ifdef __cplusplus
- }
- #endif
- #endif //__FU6522_72_H__
- /*** (C) Copyright 2011-2022 Fortior Technology Co., Ltd. ***/
|