Files
TencentOS-tiny/board/STM32F746NGH6_discovery/BSP/hal_stm_lvgl/tft/tft.h
supowang 3260ba3161 add LittlevGL demo
add LittlevGL demo on stm32f746 discovery board
2019-10-12 14:57:31 +08:00

36 lines
563 B
C

/**
* @file tft.h
*
*/
#ifndef DISP_H
#define DISP_H
/*********************
* INCLUDES
*********************/
#include <stdint.h>
#include "lvgl/src/lv_misc/lv_color.h"
#include "lvgl/src/lv_misc/lv_area.h"
/*********************
* DEFINES
*********************/
#define TFT_HOR_RES 480
#define TFT_VER_RES 272
/**********************
* TYPEDEFS
**********************/
/**********************
* GLOBAL PROTOTYPES
**********************/
void tft_init(void);
/**********************
* MACROS
**********************/
#endif