46 lines
973 B
C
46 lines
973 B
C
|
|
#ifndef _INCLUDES_H_
|
||
|
|
#define _INCLUDES_H_
|
||
|
|
|
||
|
|
#include "apt32f102.h"
|
||
|
|
#include "apt32f102_adc.h"
|
||
|
|
#include "apt32f102_bt.h"
|
||
|
|
#include "apt32f102_coret.h"
|
||
|
|
#include "apt32f102_countera.h"
|
||
|
|
#include "apt32f102_crc.h"
|
||
|
|
#include "apt32f102_ept.h"
|
||
|
|
#include "apt32f102_et.h"
|
||
|
|
#include "apt32f102_gpio.h"
|
||
|
|
#include "apt32f102_gpt.h"
|
||
|
|
#include "apt32f102_i2c.h"
|
||
|
|
#include "apt32f102_ifc.h"
|
||
|
|
#include "apt32f102_lpt.h"
|
||
|
|
#include "apt32f102_rtc.h"
|
||
|
|
#include "apt32f102_sio.h"
|
||
|
|
#include "apt32f102_spi.h"
|
||
|
|
#include "apt32f102_syscon.h"
|
||
|
|
#include "apt32f102_uart.h"
|
||
|
|
#include "apt32f102_wwdt.h"
|
||
|
|
#include "apt32f102_types_local.h"
|
||
|
|
#include "apt32f102_clkcalib.h"
|
||
|
|
//#include "apt32f102_tkey.h"
|
||
|
|
|
||
|
|
#include <stdio.h>
|
||
|
|
#include <string.h>
|
||
|
|
|
||
|
|
/*应用代码头文件*/
|
||
|
|
#include "uart.h"
|
||
|
|
#include "pb_fun.h"
|
||
|
|
#include "pwm.h"
|
||
|
|
#include "eeprom.h"
|
||
|
|
|
||
|
|
#define Project_Software_Ver 0x07
|
||
|
|
#define Project_Hardware_Ver 0x04 //硬件版本
|
||
|
|
|
||
|
|
extern volatile U32_T SysTick_100us;
|
||
|
|
extern volatile U32_T SysTick_1ms;
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
#endif
|