From 706f81e5862af27fb0b60cdaf02c650c31787c78 Mon Sep 17 00:00:00 2001 From: embeddedt <42941056+embeddedt@users.noreply.github.com> Date: Sun, 18 Jul 2021 08:55:34 -0400 Subject: [PATCH] docs(indev) clarify purpose of `continue_reading` flag --- src/hal/lv_hal_indev.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hal/lv_hal_indev.h b/src/hal/lv_hal_indev.h index 7aae53ae4..1756822f6 100644 --- a/src/hal/lv_hal_indev.h +++ b/src/hal/lv_hal_indev.h @@ -81,7 +81,7 @@ typedef struct { int16_t enc_diff; /**< For LV_INDEV_TYPE_ENCODER number of steps since the previous read*/ lv_indev_state_t state; /**< LV_INDEV_STATE_REL or LV_INDEV_STATE_PR*/ - bool continue_reading; /**< Call the read callback until it's set to true*/ + bool continue_reading; /**< If set to true, the read callback is invoked again*/ } lv_indev_data_t; /** Initialized by the user and registered by 'lv_indev_add()'*/