Merge branch 'feature/esp_lcd_panel_add_data_and_type_v5.1' into 'release/v5.1'

feat(esp_lcd): add user data and init cmd (v5.1)

See merge request espressif/esp-idf!25721
This commit is contained in:
morris
2023-09-05 16:09:39 +08:00

View File

@@ -119,6 +119,8 @@ struct esp_lcd_panel_t {
* - ESP_ERR_NOT_SUPPORTED if this function is not supported by the panel * - ESP_ERR_NOT_SUPPORTED if this function is not supported by the panel
*/ */
esp_err_t (*disp_on_off)(esp_lcd_panel_t *panel, bool on_off); esp_err_t (*disp_on_off)(esp_lcd_panel_t *panel, bool on_off);
void *user_data; /*!< User data, used to store externally customized data */
}; };
#ifdef __cplusplus #ifdef __cplusplus