53 lines
1.1 KiB
C
53 lines
1.1 KiB
C
#ifndef __INCLUDES_H
|
|
#define __INCLUDES_H
|
|
|
|
// 屏蔽编译器的告警信息
|
|
// warning: #1295-D: Deprecated declaration - give arg types
|
|
#pragma diag_suppress 1295
|
|
// warning: #1035-D: single-precision operand implicitly converted to double-precision
|
|
#pragma diag_suppress 1035
|
|
|
|
// 标准头文件包含
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <math.h>
|
|
|
|
// RTOS头文件包含
|
|
#include "cmsis_os.h"
|
|
#include "semphr.h"
|
|
|
|
// 自动生成的头文件包含
|
|
|
|
// 用户头文件包含
|
|
#include "type.h"
|
|
#include "utils.h"
|
|
#include "hal_interface.h"
|
|
#include "gpio_vcc.h"
|
|
#include "def_data.h"
|
|
#include "spi_fram.h"
|
|
#include "fmc_flash.h"
|
|
#include "flash_config.h"
|
|
#include "adc_Sample.h"
|
|
#include "gpio_dac7311.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 "gpio_key.h"
|
|
#include "Lcd_drv.h"
|
|
#include "display.h"
|
|
#include "form.h"
|
|
#include "wdt_reset.h"
|
|
#include "main.h"
|
|
#include "SX127X_Driver.h"
|
|
#include "uart_RFModule.h"
|
|
#endif
|