
Code commenté du projet LED
Dependencies: BSP_DISCO_F746NG
hal_stm_lvgl/tft/tft.h
- Committer:
- treina
- Date:
- 2022-06-16
- Revision:
- 6:72febbe3ea91
- Parent:
- 5:071136c3eefa
File content as of revision 6:72febbe3ea91:
/** * @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