mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
improved driver creation fixed compile warnings in check.h hello_world example is now working again with lvgl
18 lines
225 B
C
18 lines
225 B
C
#pragma once
|
|
|
|
#include <lvgl.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct nb_lvgl nb_lvgl_t;
|
|
struct nb_lvgl {
|
|
lv_disp_t* _Nonnull disp;
|
|
lv_indev_t* _Nullable touch_indev;
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|