From 9c7046375fa3618bcbd7f65f0996453f46c5bd23 Mon Sep 17 00:00:00 2001 From: Song Ruo Jing Date: Fri, 2 Sep 2022 20:29:20 +0800 Subject: [PATCH] gpio: Fix ESP32S3 GPIO48 does not support hold function bug GPIO_HOLD_MASK array was missing the last item --- components/soc/esp32s3/gpio_periph.c | 1 + 1 file changed, 1 insertion(+) diff --git a/components/soc/esp32s3/gpio_periph.c b/components/soc/esp32s3/gpio_periph.c index 143f02f1fb..aa9d269dad 100644 --- a/components/soc/esp32s3/gpio_periph.c +++ b/components/soc/esp32s3/gpio_periph.c @@ -115,4 +115,5 @@ const uint32_t GPIO_HOLD_MASK[SOC_GPIO_PIN_COUNT] = { BIT(24), BIT(25), BIT(26), + BIT(27), };