Boilerplate library to get started with LvGL on STM DISCO F746NG board. Adapted from https://os.mbed.com/users/JohnnyK/code/DISCO-F746NG_MbedOs_LvGL_example/

Dependencies:   BSP_DISCO_F746NG

Dependents:   LvGL_F746NG_test

lvgl_f746ng.h

Committer:
elelthvd
Date:
2020-09-10
Revision:
1:a23fffad1321
Parent:
0:cffa136e7f8f

File content as of revision 1:a23fffad1321:


#include "lv_port_disp.h"
#include "lv_port_indev.h"
#include "lvgl/lvgl.h"
#include "mbed.h"
#include <cstdio>

/* Use Thread or not (comment or not) */
#define LVGL_USE_THREAD
/* LvGL tick increment value */
#define LVGL_TICK_INC 5

/* Initialize lvgl + target port specifics + mbed ticker or thread. */
void lvgl_f746ng_init();