90 lines
2.7 KiB
C
90 lines
2.7 KiB
C
/*
|
|
*********************************************************************************************************
|
|
*
|
|
* MASTER INCLUDES
|
|
*
|
|
* IAR Development Kits
|
|
* on the
|
|
*
|
|
* Nano130
|
|
*
|
|
* Filename : includes.h
|
|
* Version : V1.00
|
|
* Programmer(s) : Qian Xianghong
|
|
*********************************************************************************************************
|
|
*/
|
|
|
|
#ifndef INCLUDES_MODULES_PRESENT
|
|
#define INCLUDES_MODULES_PRESENT
|
|
|
|
#include "Nano100Series.h"
|
|
|
|
/*
|
|
*********************************************************************************************************
|
|
* STANDARD LIBRARIES
|
|
*********************************************************************************************************
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <math.h>
|
|
|
|
/*
|
|
*********************************************************************************************************
|
|
* APP / BSP
|
|
*********************************************************************************************************
|
|
*/
|
|
|
|
#include "def_data.h"
|
|
#include "gpio_vcc.h"
|
|
#include "spi_fram.h"
|
|
#include "spi_flash.h"
|
|
#include "flash_config.h"
|
|
#include "adc_Sample.h"
|
|
//#include "gpio_led.h"
|
|
#include "uart_console.h"
|
|
#include "485_sensor.h"
|
|
#include "modbus_slave.h"
|
|
#include "adc_calculate.h"
|
|
#include "spi_accelero.h"
|
|
#include "uart_dtu.h"
|
|
#include "cert.h"
|
|
#include "adc_bat.h"
|
|
#include "rtc_wakeup.h"
|
|
//#include "timer_wakeup.h"
|
|
#include "gpio_key.h"
|
|
#include "Lcd_drv.h"
|
|
#include "display.h"
|
|
#include "form.h"
|
|
#include "systick_clock.h"
|
|
#include "wdt_reset.h"
|
|
#include "uart_RFModule.h"
|
|
#include "uart_BDModule.h"
|
|
#include "main.h"
|
|
|
|
/*
|
|
*********************************************************************************************************
|
|
* PROBE
|
|
*********************************************************************************************************
|
|
*/
|
|
|
|
|
|
/*
|
|
*********************************************************************************************************
|
|
* SERIAL
|
|
*********************************************************************************************************
|
|
*/
|
|
|
|
|
|
/*
|
|
*********************************************************************************************************
|
|
* INCLUDES END
|
|
*********************************************************************************************************
|
|
*/
|
|
|
|
|
|
#endif
|