diff options
| author | JF <jf@codingfield.com> | 2020-02-08 18:01:02 +0100 |
|---|---|---|
| committer | JF <jf@codingfield.com> | 2020-02-08 18:01:02 +0100 |
| commit | a97faf8e9e84053d6db37549cc4211866cb3b89f (patch) | |
| tree | afa8a16faba5860c353c8748e646933cad14dbd8 /src/DisplayApp/lv_port_disp.h | |
| parent | e737fb0499769fa342e4dc267416a7ce5da2574c (diff) | |
First quick'n'dirty integration of LittleVGL. Needs some cleaning.
Diffstat (limited to 'src/DisplayApp/lv_port_disp.h')
| -rw-r--r-- | src/DisplayApp/lv_port_disp.h | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/DisplayApp/lv_port_disp.h b/src/DisplayApp/lv_port_disp.h new file mode 100644 index 00000000..e0d70506 --- /dev/null +++ b/src/DisplayApp/lv_port_disp.h @@ -0,0 +1,45 @@ +/** + * @file lv_port_disp_templ.h + * + */ + + /*Copy this file as "lv_port_disp.h" and set this value to "1" to enable content*/ +#if 1 + +#ifndef LV_PORT_DISP_TEMPL_H +#define LV_PORT_DISP_TEMPL_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#include "lvgl/lvgl.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ +void lv_port_disp_init(void); + +/********************** + * MACROS + **********************/ + + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_PORT_DISP_TEMPL_H*/ + +#endif /*Disable/Enable content*/ |
