Dependencies: BSP_DISCO_F746NG
hal_stm_lvgl/tft/tft.h
- Committer:
- JohnnyK
- Date:
- 2021-06-15
- Revision:
- 5:071136c3eefa
- Parent:
- 3:4f5dc253eb7b
File content as of revision 5:071136c3eefa:
/** * @file tft.h * */ #ifdef __cplusplus extern "C" { #endif #ifndef DISP_H #define DISP_H /********************* * INCLUDES *********************/ #include <stdint.h> #include "lvgl/lvgl.h" /********************* * DEFINES *********************/ #define TFT_HOR_RES 480 #define TFT_VER_RES 272 /********************** * TYPEDEFS **********************/ /********************** * GLOBAL PROTOTYPES **********************/ void tft_init(void); /********************** * MACROS **********************/ #ifdef __cplusplus } #endif #endif