Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions bsp/esp32_s3_lcd_ev_board/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,9 @@
### Bugfix

* Fix adc build error when using `ESP-IDF` `5.0`

## v2.2.3 - 2024-11-07

### Bugfix

* Fixed LVGL8 compatibility in esp32_s3_lcd_ev_board
2 changes: 1 addition & 1 deletion bsp/esp32_s3_lcd_ev_board/idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "2.2.2"
version: "2.2.3"
description: Board Support Package (BSP) for ESP32-S3-LCD-EV-Board
url: https://github.com/espressif/esp-bsp/tree/master/bsp/esp32_s3_lcd_ev_board

Expand Down
2 changes: 2 additions & 0 deletions bsp/esp32_s3_lcd_ev_board/src/esp32_s3_lcd_ev_board.c
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,9 @@ static lv_display_t *bsp_display_lcd_init()
.monochrome = false,
.hres = BSP_LCD_H_RES,
.vres = BSP_LCD_V_RES,
#if LVGL_VERSION_MAJOR >= 9
.color_format = LV_COLOR_FORMAT_RGB565,
#endif

.rotation = {
.swap_xy = false,
Expand Down