Board
ESP32-S3
Hardware Description
custom board
IDE Name
VSCode
Operating System
Windows 11
Description
The recent commit 414dba5 titled "refactor(lcd)!: remove deprecated types" removed the member on_bounce_frame_finish from the esp_lcd_rgb_panel_event_callbacks_t structure. This removal has introduced a compilation error in the file espressif__esp_lvgl_port/src/lvgl9/esp_lvgl_port_disp.c, which still references the on_bounce_frame_finish callback.
'esp_lcd_rgb_panel_event_callbacks_t' has no member named 'on_bounce_frame_finish'
Sketch
#include "esp_lvgl_port.h"
will trigger the compilation error due to the missing on_bounce_frame_finish member in the esp_lcd_rgb_panel_event_callbacks_t structure.
Other Steps to Reproduce
No response
I have checked existing issues, README.md and ESP32 Forum