Update platform_detect.hpp

This commit is contained in:
mrfaptastic 2022-11-11 10:03:32 +00:00 committed by GitHub
parent 2760b0098a
commit f47b7f5723
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,7 +39,11 @@ Modified heavily for the ESP32 HUB75 DMA library by:
#include "esp32s3/gdma_lcd_parallel16.hpp" #include "esp32s3/gdma_lcd_parallel16.hpp"
#include "esp32s3/esp32s3-default-pins.hpp" #include "esp32s3/esp32s3-default-pins.hpp"
#elif defined (CONFIG_IDF_TARGET_ESP32) #elif defined(CONFIG_IDF_TARGET_ESP32C3) || defined(CONFIG_IDF_TARGET_ESP32H2)
#error "ESP32 RISC-V devices do not have an LCD interface and are therefore not supported by this library."
#elif defined (CONFIG_IDF_TARGET_ESP32) || defined(ESP32)
// Assume an ESP32 (the original 2015 version) // Assume an ESP32 (the original 2015 version)
// Same include as ESP32S3 // Same include as ESP32S3
@ -51,7 +55,7 @@ Modified heavily for the ESP32 HUB75 DMA library by:
#include "esp32/esp32-default-pins.hpp" #include "esp32/esp32-default-pins.hpp"
#else #else
#error "Unknown ESP32 platform." #error "Unknown platform."
#endif #endif