aboutsummaryrefslogtreecommitdiff
path: root/src/misc/lv_timer_private.h
diff options
context:
space:
mode:
authorVictor Wheeler <vwheeler63@users.noreply.github.com>2024-08-12 06:20:15 -0600
committerGitHub <noreply@github.com>2024-08-12 14:20:15 +0200
commit14461f1d9dcd168d59d07ea682ca671e55b1c0eb (patch)
tree2b9d2234bdd090deb4b1c967e19b23e1e8d068a2 /src/misc/lv_timer_private.h
parent8699a7e86e18fdb09bb2d72e35c75bdedc539b14 (diff)
downloadlvgl-14461f1d9dcd168d59d07ea682ca671e55b1c0eb.tar.gz
lvgl-14461f1d9dcd168d59d07ea682ca671e55b1c0eb.zip
fix(docbuild): Doxygen warnings from format errors (part 1 of 2) (#6652)
Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
Diffstat (limited to 'src/misc/lv_timer_private.h')
-rw-r--r--src/misc/lv_timer_private.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/misc/lv_timer_private.h b/src/misc/lv_timer_private.h
index d7c883a47..b7f42b0a1 100644
--- a/src/misc/lv_timer_private.h
+++ b/src/misc/lv_timer_private.h
@@ -28,17 +28,17 @@ extern "C" {
* Descriptor of a lv_timer
*/
struct lv_timer_t {
- uint32_t period; /**< How often the timer should run*/
- uint32_t last_run; /**< Last time the timer ran*/
- lv_timer_cb_t timer_cb; /**< Timer function*/
- void * user_data; /**< Custom user data*/
- int32_t repeat_count; /**< 1: One time; -1 : infinity; n>0: residual times*/
+ uint32_t period; /**< How often the timer should run */
+ uint32_t last_run; /**< Last time the timer ran */
+ lv_timer_cb_t timer_cb; /**< Timer function */
+ void * user_data; /**< Custom user data */
+ int32_t repeat_count; /**< 1: One time; -1 : infinity; n>0: residual times */
uint32_t paused : 1;
uint32_t auto_delete : 1;
};
typedef struct {
- lv_ll_t timer_ll; /*Linked list to store the lv_timers*/
+ lv_ll_t timer_ll; /**< Linked list to store the lv_timers */
bool lv_timer_run;
uint8_t idle_last;