32 lines
539 B
C
32 lines
539 B
C
#ifndef __INCLUDES_H
|
|
#define __INCLUDES_H
|
|
|
|
// 标准头文件包含
|
|
#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_flash.h"
|
|
#include "flash_config.h"
|
|
#include "uart_console.h"
|
|
#include "Lcd_drv.h"
|
|
#include "display.h"
|
|
#include "main.h"
|
|
|
|
#endif
|