chore(doc-build warnings): struct adjustments to work around Breathe bug

This commit is contained in:
Victor Wheeler
2025-06-20 15:11:12 -06:00
committed by Gabor Kiss-Vamosi
parent 0829150e56
commit 5d7b2e7dcf
2 changed files with 13 additions and 9 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ extern "C" {
* TYPEDEFS
**********************/
typedef struct lv_draw_pxp_unit_t {
typedef struct _lv_draw_pxp_unit_t {
lv_draw_unit_t base_unit;
lv_draw_task_t * task_act;
#if LV_USE_OS
+12 -8
View File
@@ -27,21 +27,25 @@ extern "C" {
typedef struct _lv_monkey_t lv_monkey_t;
typedef struct {
int32_t min;
int32_t max;
} lv_range_t;
typedef struct {
uint32_t min;
uint32_t max;
} lv_urange_t;
struct _lv_monkey_config_t {
/** Input device type */
lv_indev_type_t type;
/** Monkey execution period */
struct {
uint32_t min;
uint32_t max;
} period_range;
lv_urange_t period_range;
/** The range of input value */
struct {
int32_t min;
int32_t max;
} input_range;
lv_range_t input_range;
};
/**********************