diff options
| author | JF <jf@codingfield.com> | 2020-03-08 20:46:25 (GMT) |
|---|---|---|
| committer | JF <jf@codingfield.com> | 2020-03-08 20:46:25 (GMT) |
| commit | 0a5cd60fe86149f8958fc546e99f6370cb74950e (patch) | |
| tree | d630a6c66d69d22c53b8011e215e1072875c6a29 /src/libs/lvgl/porting/lv_port_indev_template.h | |
| parent | d834f40c1014ac8926af9aaadc434a49e632b000 (diff) | |
When a full screen refresh is done, apply a vertical scroll during the refresh. This makes the transition from one screen the another one smoother, even if the refresh rate is slow.
Diffstat (limited to 'src/libs/lvgl/porting/lv_port_indev_template.h')
| m--------- | src/libs/lvgl | 0 | ||||
| -rw-r--r-- | src/libs/lvgl/porting/lv_port_indev_template.h | 45 |
2 files changed, 45 insertions, 0 deletions
diff --git a/src/libs/lvgl b/src/libs/lvgl deleted file mode 160000 -Subproject ee95d1c9cf74899585f9165458911f2d54ca750 diff --git a/src/libs/lvgl/porting/lv_port_indev_template.h b/src/libs/lvgl/porting/lv_port_indev_template.h new file mode 100644 index 0000000..ca0274e --- /dev/null +++ b/src/libs/lvgl/porting/lv_port_indev_template.h @@ -0,0 +1,45 @@ + +/** + * @file lv_port_indev_templ.h + * + */ + + /*Copy this file as "lv_port_indev.h" and set this value to "1" to enable content*/ +#if 0 + +#ifndef LV_PORT_INDEV_TEMPL_H +#define LV_PORT_INDEV_TEMPL_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#include "lvgl/lvgl.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/********************** + * MACROS + **********************/ + + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_PORT_INDEV_TEMPL_H*/ + +#endif /*Disable/Enable content*/ |
