32 lines
539 B
C
32 lines
539 B
C
|
|
#ifndef __INCLUDES_H
|
|||
|
|
#define __INCLUDES_H
|
|||
|
|
|
|||
|
|
// <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 "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
|