Skip to content

Commit

Permalink
Merge pull request #389 from espressif/fix/lvgl_port_v8_compatibility
Browse files Browse the repository at this point in the history
fix(LVGL port): Fixed rotation type compatibility with LVGL8.
  • Loading branch information
espzav committed Sep 9, 2024
2 parents a61db3c + 88fdba9 commit f7fd091
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions components/esp_lvgl_port/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 2.3.2

### Fixes
- Fixed rotation type compatibility with LVGL8.

## 2.3.1

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion components/esp_lvgl_port/idf_component.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit f7fd091

Please sign in to comment.