Update LVGL (master 9.2+) and related libraries (#130)

- LVGL 9.2+ (master commit)
- esp_lvgl_port (master with my PR hotfix changes)
- espressif/esp_lcd_touch_gt911 1.1.1~2
This commit is contained in:
Ken Van Hoeylandt
2024-12-16 23:30:57 +01:00
committed by GitHub
parent e4b8519f67
commit 80b69b7f45
90 changed files with 7328 additions and 469 deletions
@@ -0,0 +1,47 @@
/*
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @file
* @brief ESP LVGL port private
*/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Rotation configuration
*/
typedef enum {
LVGL_PORT_DISP_TYPE_OTHER,
LVGL_PORT_DISP_TYPE_DSI,
LVGL_PORT_DISP_TYPE_RGB,
} lvgl_port_disp_type_t;
/**
* @brief Rotation configuration
*/
typedef struct {
unsigned int avoid_tearing: 1; /*!< Use internal RGB buffers as a LVGL draw buffers to avoid tearing effect */
} lvgl_port_disp_priv_cfg_t;
/**
* @brief Notify LVGL task
*
* @note It is called from RGB vsync ready
*
* @param value notification value
* @return
* - true, whether a high priority task has been waken up by this function
*/
bool lvgl_port_task_notify(uint32_t value);
#ifdef __cplusplus
}
#endif