Upgrade public source code to version 1.0.1332. New boards support

This commit is contained in:
Dmitry
2025-11-14 17:33:20 -05:00
parent 668a86f291
commit af5732e71b
26 changed files with 832 additions and 140 deletions

View File

@@ -215,6 +215,11 @@ bool lvgl_spi_driver_init(int host,
const char *spi_names[] = {
"SPI_HOST", "", ""
};
#elif defined (CONFIG_IDF_TARGET_ESP32S3)
assert((SPI1_HOST <= host) && (SPI3_HOST >= host));
const char *spi_names[] = {
"SPI_HOST", "", ""
};
#endif
ESP_LOGI(TAG, "Configuring SPI host %s (%d)", spi_names[host], host);