From 88fdba98e1ffaadece5ee2b0a35f33c69a412ddd Mon Sep 17 00:00:00 2001 From: Vilem Zavodny Date: Thu, 5 Sep 2024 11:06:10 +0200 Subject: [PATCH] fix(LVGL port): Fixed rotation type compatibility with LVGL8. --- components/esp_lvgl_port/CHANGELOG.md | 5 +++++ components/esp_lvgl_port/idf_component.yml | 2 +- .../esp_lvgl_port/include/esp_lvgl_port_compatibility.h | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/components/esp_lvgl_port/CHANGELOG.md b/components/esp_lvgl_port/CHANGELOG.md index 584dc4e3..ac1af8ba 100644 --- a/components/esp_lvgl_port/CHANGELOG.md +++ b/components/esp_lvgl_port/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 2.3.2 + +### Fixes +- Fixed rotation type compatibility with LVGL8. + ## 2.3.1 ### Fixes diff --git a/components/esp_lvgl_port/idf_component.yml b/components/esp_lvgl_port/idf_component.yml index eebc9865..06dfd616 100644 --- a/components/esp_lvgl_port/idf_component.yml +++ b/components/esp_lvgl_port/idf_component.yml @@ -1,4 +1,4 @@ -version: "2.3.1" +version: "2.3.2" description: ESP LVGL port url: https://github.com/espressif/esp-bsp/tree/master/components/esp_lvgl_port dependencies: diff --git a/components/esp_lvgl_port/include/esp_lvgl_port_compatibility.h b/components/esp_lvgl_port/include/esp_lvgl_port_compatibility.h index b3619b2c..008a09ec 100644 --- a/components/esp_lvgl_port/include/esp_lvgl_port_compatibility.h +++ b/components/esp_lvgl_port/include/esp_lvgl_port_compatibility.h @@ -25,6 +25,7 @@ typedef enum { LV_DISPLAY_ROTATION_180 = LV_DISP_ROT_180, LV_DISPLAY_ROTATION_270 = LV_DISP_ROT_270 } lv_disp_rotation_t; +typedef lv_disp_rotation_t lv_display_rotation_t; #ifdef __cplusplus }