Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: BSP_DISCO_F746NG
hal_stm_lvgl/tft/tft.h
- Committer:
- JohnnyK
- Date:
- 2023-02-04
- Revision:
- 6:778736ecceb0
- Parent:
- 5:071136c3eefa
File content as of revision 6:778736ecceb0:
/** * @file tft.h * */ #ifdef __cplusplus extern "C" { #endif #ifndef DISP_H #define DISP_H /********************* * INCLUDES *********************/ #include <stdint.h> #include "lvgl/src/misc/lv_color.h" #include "lvgl/src/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