Skip to content

Commit 1d1803f

Browse files
Fixed incorrect NUM_OUTPUT_PINS - should be 47 not 45
This is why my APA doesn't work on my FeatherS2 as it usess IO45 and the check is for < not <=
1 parent eeb2556 commit 1d1803f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cores/esp32/esp32-hal-gpio.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ extern "C" {
2828
#include "soc/soc_caps.h"
2929

3030
#if (CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32S3)
31-
#define NUM_OUPUT_PINS 45
31+
#define NUM_OUPUT_PINS 47
3232
#define PIN_DAC1 17
3333
#define PIN_DAC2 18
3434
#else

0 commit comments

Comments
 (0)