You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some codes in lvgl_helpers.c may cause SPI error. Because dma_channel should set to SPI_DMA_CH_AUTO (which value is 3) while using esp32s3, but it set value to 1.
Change these: #if defined (CONFIG_IDF_TARGET_ESP32C3)
Into #if (defined (CONFIG_IDF_TARGET_ESP32C3)) || (defined (CONFIG_IDF_TARGET_ESP32S3))
May fix problem.
The text was updated successfully, but these errors were encountered:
Some codes in lvgl_helpers.c may cause SPI error. Because dma_channel should set to SPI_DMA_CH_AUTO (which value is 3) while using esp32s3, but it set value to 1.
Change these:
#if defined (CONFIG_IDF_TARGET_ESP32C3)
Into
#if (defined (CONFIG_IDF_TARGET_ESP32C3)) || (defined (CONFIG_IDF_TARGET_ESP32S3))
May fix problem.
The text was updated successfully, but these errors were encountered: