46 lines
964 B
C
46 lines
964 B
C
|
|
#ifndef __INCLUDES_H
|
|||
|
|
#define __INCLUDES_H
|
|||
|
|
|
|||
|
|
// <20><><EFBFBD>α<EFBFBD><CEB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ĸ澯<C4B8><E6BEAF>Ϣ
|
|||
|
|
// 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
|
|||
|
|
|
|||
|
|
// <20><>ͷ<D7BC>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
#include <stdio.h>
|
|||
|
|
#include <string.h>
|
|||
|
|
#include <ctype.h>
|
|||
|
|
#include <stdlib.h>
|
|||
|
|
#include <stdarg.h>
|
|||
|
|
#include <math.h>
|
|||
|
|
|
|||
|
|
// RTOSͷ<53>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
#include "cmsis_os.h"
|
|||
|
|
#include "semphr.h"
|
|||
|
|
|
|||
|
|
// <20>Զ<EFBFBD><D4B6><EFBFBD><EFBFBD>ɵ<EFBFBD>ͷ<EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
|
|||
|
|
// <20>û<EFBFBD>ͷ<EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
#include "type.h"
|
|||
|
|
#include "utils.h"
|
|||
|
|
#include "display.h"
|
|||
|
|
#include "gpio_vcc.h"
|
|||
|
|
#include "hal_interface.h"
|
|||
|
|
#include "def_data.h"
|
|||
|
|
#include "spi_fram.h"
|
|||
|
|
#include "spi_flash.h"
|
|||
|
|
#include "flash_config.h"
|
|||
|
|
#include "modbus_slave.h"
|
|||
|
|
#include "adc_calculate.h"
|
|||
|
|
#include "uart_RFGateway.h"
|
|||
|
|
#include "uart_Ethernet.h"
|
|||
|
|
#include "ext_data.h"
|
|||
|
|
#include "uart_dtu.h"
|
|||
|
|
#include "rtc_wakeup.h"
|
|||
|
|
#include "dwin_form.h"
|
|||
|
|
#include "gpio_key.h"
|
|||
|
|
#include "main.h"
|
|||
|
|
|
|||
|
|
#endif
|