Nathan Leprevier / Mbed OS Grecordeur

Dependencies:   LCD_DISCO_F746NG GRecorder BSP_DISCO_F746NG

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers tft.h Source File

tft.h

Go to the documentation of this file.
00001 /**
00002  * @file tft.h
00003  *
00004  */
00005 
00006 #ifdef __cplusplus
00007  extern "C" {
00008 #endif
00009 
00010 #ifndef DISP_H
00011 #define DISP_H
00012 
00013 /*********************
00014  *      INCLUDES
00015  *********************/
00016 #include <stdint.h>
00017 #include "lvgl/lvgl.h"
00018 
00019 /*********************
00020  *      DEFINES
00021  *********************/
00022 #define TFT_HOR_RES 480
00023 #define TFT_VER_RES 272
00024 
00025 /**********************
00026  *      TYPEDEFS
00027  **********************/
00028 
00029 /**********************
00030  * GLOBAL PROTOTYPES
00031  **********************/
00032 void tft_init(void);
00033 
00034 /**********************
00035  *      MACROS
00036  **********************/
00037 #ifdef __cplusplus
00038 }
00039 #endif
00040 
00041 #endif