Example of using the LVGL (8.3.4) with the MbedOS (6.16 - bare metal) on the Disco-F746NG board

Dependencies:   BSP_DISCO_F746NG

Committer:
JohnnyK
Date:
Tue Apr 07 08:06:45 2020 +0000
Revision:
2:afc050526249
Parent:
0:10c4b83c458d
add link to a Notebook page

Who changed what in which revision?

UserRevisionLine numberNew contents of line
JohnnyK 0:10c4b83c458d 1
JohnnyK 0:10c4b83c458d 2 /**
JohnnyK 0:10c4b83c458d 3 * @file lv_port_indev_templ.h
JohnnyK 0:10c4b83c458d 4 *
JohnnyK 0:10c4b83c458d 5 */
JohnnyK 0:10c4b83c458d 6
JohnnyK 0:10c4b83c458d 7 /*Copy this file as "lv_port_indev.h" and set this value to "1" to enable content*/
JohnnyK 0:10c4b83c458d 8 #if 1
JohnnyK 0:10c4b83c458d 9
JohnnyK 0:10c4b83c458d 10 #ifndef LV_PORT_INDEV_H
JohnnyK 0:10c4b83c458d 11 #define LV_PORT_INDEV_H
JohnnyK 0:10c4b83c458d 12
JohnnyK 0:10c4b83c458d 13 #ifdef __cplusplus
JohnnyK 0:10c4b83c458d 14 extern "C" {
JohnnyK 0:10c4b83c458d 15 #endif
JohnnyK 0:10c4b83c458d 16
JohnnyK 0:10c4b83c458d 17 /*********************
JohnnyK 0:10c4b83c458d 18 * INCLUDES
JohnnyK 0:10c4b83c458d 19 *********************/
JohnnyK 0:10c4b83c458d 20 #include "lvgl/lvgl.h"
JohnnyK 0:10c4b83c458d 21
JohnnyK 0:10c4b83c458d 22 /*********************
JohnnyK 0:10c4b83c458d 23 * DEFINES
JohnnyK 0:10c4b83c458d 24 *********************/
JohnnyK 0:10c4b83c458d 25
JohnnyK 0:10c4b83c458d 26 /**********************
JohnnyK 0:10c4b83c458d 27 * TYPEDEFS
JohnnyK 0:10c4b83c458d 28 **********************/
JohnnyK 0:10c4b83c458d 29
JohnnyK 0:10c4b83c458d 30 /**********************
JohnnyK 0:10c4b83c458d 31 * GLOBAL PROTOTYPES
JohnnyK 0:10c4b83c458d 32 **********************/
JohnnyK 0:10c4b83c458d 33 void lv_port_indev_init(void);
JohnnyK 0:10c4b83c458d 34 /**********************
JohnnyK 0:10c4b83c458d 35 * MACROS
JohnnyK 0:10c4b83c458d 36 **********************/
JohnnyK 0:10c4b83c458d 37
JohnnyK 0:10c4b83c458d 38
JohnnyK 0:10c4b83c458d 39 #ifdef __cplusplus
JohnnyK 0:10c4b83c458d 40 } /* extern "C" */
JohnnyK 0:10c4b83c458d 41 #endif
JohnnyK 0:10c4b83c458d 42
JohnnyK 0:10c4b83c458d 43 #endif /*LV_PORT_INDEV_TEMPL_H*/
JohnnyK 0:10c4b83c458d 44
JohnnyK 0:10c4b83c458d 45 #endif /*Disable/Enable content*/
JohnnyK 0:10c4b83c458d 46