summaryrefslogtreecommitdiff
path: root/src/libs
diff options
context:
space:
mode:
authorRiku Isokoski <riksu9000@gmail.com>2021-07-25 17:01:09 (GMT)
committerRiku Isokoski <riksu9000@gmail.com>2021-07-25 17:01:09 (GMT)
commita1ba187c47ddad932fc38247d969bb9888860698 (patch)
tree6479d302c81fc8e9700854b1682542cdc9c4b6ea /src/libs
parente4d9636e8258c25efbd79d26a8167b17fe7252c8 (diff)
parent7b75ca591d31ccd8883a1a1ff83cfd271959dbaa (diff)
Merge branch 'develop' into new_touch_handler
Diffstat (limited to 'src/libs')
-rw-r--r--src/libs/lv_conf.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libs/lv_conf.h b/src/libs/lv_conf.h
index 18fc3fa..73109c5 100644
--- a/src/libs/lv_conf.h
+++ b/src/libs/lv_conf.h
@@ -295,6 +295,7 @@ typedef void* lv_img_decoder_user_data_t;
#define LV_TICK_CUSTOM 1
#if LV_TICK_CUSTOM == 1
#define LV_TICK_CUSTOM_INCLUDE "FreeRTOS.h" /*Header for the system time function*/
+uint32_t xTaskGetTickCount(); /*Forward declare to avoid compiler warning*/
#define LV_TICK_CUSTOM_SYS_TIME_EXPR (xTaskGetTickCount()) /*Expression evaluating to current system time in ms*/
#endif /*LV_TICK_CUSTOM*/