lvgl-v8/UART/SimplUART/APP/BoardCfg.h

60 lines
1.4 KiB
C
Raw Normal View History

2022-11-19 17:13:40 +00:00
#ifndef _BOARD_CFG_H_
#define _BOARD_CFG_H_
#include "debug.h"
#include "userTimer.h"
#include "SWM320.h"
/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/**********************************************************
Uart控制台
**********************************************************/
#define UART_CONSOLE 1
/**********************************************************
SPI_FLASH
**********************************************************/
#define SPI_FLASH 1
#if (SPI_FLASH)
#include "SPI_Flash.h"
#endif
/**********************************************************
**********************************************************/
#define XPT2046 1
#if(XPT2046)
#include"XPT2046.h"
#endif
/**********************************************************
LCDRGB
**********************************************************/
#define LCD_RGB 1
#define LCD_HDOT 800 //水平分辨率
#define LCD_VDOT 480 //垂直分辨率
#if (LCD_RGB)
#include "lcd.h"
#endif
/**********************************************************
LVGL_V8
**********************************************************/
#define LVGL_V8 1
#if (LVGL_V8)
#include "lvgl.h"
#endif
void BoardInit(void);
#endif