Files
player/Project/Src/MY/main.h
andy 045cff4cc6 整理代码
1.解决一些编译警告
2.发现png因为文件api不支持而不能使用
2025-10-18 13:58:40 +08:00

57 lines
1.0 KiB
C

/***
***************************************************************************
* @file main.h
* @brief 定义相关任务的宏
***************************************************************************
*
*
*
*
***************************************************************************
***/
#ifndef __MAIN_H
#define __MAIN_H
// 库函数
#include "arm_math.h"
#include "string.h"
// 硬件驱动层
#include "irq_vector.h"
#include "lcd_pwm.h"
#include "lcd_rgb.h"
#include "led.h"
#include "rtc.h"
#include "sdram.h"
#include "spi_flash.h"
#include "timer.h"
#include "touch_043.h"
#include "usart.h"
// #include "flash.h"
// #include "w25qxx.h"
#include "random.h"
// 自定义底层软件
#include "char_encode.h"
#include "crc8_16.h"
#include "flash_manager.h"
#include "mymem.h"
// 移植软件
#include "ff.h"
// #include "nes_main.h"
#include "gif.h"
#include "picdeco.h"
// #include "usbd_cdc_core.h"
// #include "usbd_cdc_vcp.h"
// #include "usbd_usr.h"
// #include "usb_conf.h"
// #include "usbd_desc.h"
#include "mywin_inc.h"
#include "system_file.h"
#endif