Fix compile errors

This commit is contained in:
fvanroie 2022-12-02 01:54:44 +01:00
parent 81c595c80b
commit 7229ce27e7
2 changed files with 4 additions and 3 deletions

View File

@ -27,6 +27,8 @@ File pFileOut;
#if ESP32
static SemaphoreHandle_t xGuiSemaphore = NULL;
static TaskHandle_t g_lvgl_task_handle;
esp_err_t gui_setup_lvgl_task(void);
#endif
#define LVGL_TICK_PERIOD 20

View File

@ -63,12 +63,11 @@ void gui_antiburn_cb(lv_disp_drv_t* disp, const lv_area_t* area, lv_color_t* col
/* ===== Locks ===== */
bool gui_acquire(void);
void gui_release(void);
esp_err_t gui_setup_lvgl_task();
/* ===== Read/Write Configuration ===== */
#if HASP_USE_CONFIG > 0
bool guiGetConfig(const JsonObject& settings);
bool guiSetConfig(const JsonObject& settings);
#endif
#endif // HASP_USE_CONFIG
#endif
#endif // HASP_GUI_H