mirror of
https://github.com/espressif/esp-idf.git
synced 2025-09-17 07:28:02 +00:00
Merge branch 'bugfix/enable_gpio_20' into 'master'
gpio: Enable IO20 on ESP32 Closes IDFGH-5140 See merge request espressif/esp-idf!14881
This commit is contained in:
@@ -116,8 +116,8 @@
|
||||
// set pullup/down/capability via RTC register. On ESP32-S2, Digital IOs have their own registers to
|
||||
// control pullup/down/capability, independent with RTC registers.
|
||||
|
||||
// 0~39 except from 20, 24, 28~31 are valid
|
||||
#define SOC_GPIO_VALID_GPIO_MASK (0xFFFFFFFFFFULL & ~(0ULL | BIT20 | BIT24 | BIT28 | BIT29 | BIT30 | BIT31))
|
||||
// 0~39 except from 24, 28~31 are valid
|
||||
#define SOC_GPIO_VALID_GPIO_MASK (0xFFFFFFFFFFULL & ~(0ULL | BIT24 | BIT28 | BIT29 | BIT30 | BIT31))
|
||||
// GPIO >= 34 are input only
|
||||
#define SOC_GPIO_VALID_OUTPUT_GPIO_MASK (SOC_GPIO_VALID_GPIO_MASK & ~(0ULL | BIT34 | BIT35 | BIT36 | BIT37 | BIT38 | BIT39))
|
||||
|
||||
|
Reference in New Issue
Block a user