gpio: Fix ESP32S3 GPIO48 does not support hold function bug

GPIO_HOLD_MASK array was missing the last item
This commit is contained in:
Song Ruo Jing
2022-09-02 20:29:20 +08:00
committed by morris
parent ed5aea2955
commit 9c7046375f

View File

@@ -115,4 +115,5 @@ const uint32_t GPIO_HOLD_MASK[SOC_GPIO_PIN_COUNT] = {
BIT(24),
BIT(25),
BIT(26),
BIT(27),
};