Merge branch 'mdev' into ESP32-HUB75-MatrixPanel-DMA

This commit is contained in:
Will Tatam
2024-02-25 21:34:47 +00:00
22 changed files with 173 additions and 8455 deletions

View File

@@ -265,16 +265,10 @@ void appendGPIOinfo() {
// add info about max. # of pins
oappend(SET_F("d.max_gpio="));
#if defined(CONFIG_IDF_TARGET_ESP32S2)
oappendi(46);
#elif defined(CONFIG_IDF_TARGET_ESP32S3)
oappendi(48);
#elif defined(CONFIG_IDF_TARGET_ESP32C3)
oappendi(21);
#elif defined(ESP32)
oappendi(39);
#if defined(ESP32)
oappendi(NUM_DIGITAL_PINS - 1);
#else //8266
oappendi(NUM_DIGITAL_PINS); //WLEDMM include pin 17 for Analog
oappendi(NUM_DIGITAL_PINS); //WLEDMM include pin 17 for Analog
#endif
oappend(SET_F(";"));