Dependencies: BSP_DISCO_F746NG
hal_stm_lvgl/tft/tft.h
- Committer:
- JohnnyK
- Date:
- 2021-04-24
- Revision:
- 3:4f5dc253eb7b
- Child:
- 5:071136c3eefa
File content as of revision 3:4f5dc253eb7b:
/** * @file tft.h * */ #ifndef DISP_H #define DISP_H #ifdef __cplusplus extern "C" { #endif /********************* * 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 **********************/ #ifdef __cplusplus } #endif #endif