Jan Kamidra / Mbed OS DISCO-F746NG_MbedOs_LvGL_example

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