1# ESP32 GPIO configuration options 2 3# Copyright (c) 2017 Intel Corporation 4# SPDX-License-Identifier: Apache-2.0 5 6menuconfig GPIO_ESP32 7 bool "ESP32 GPIO" 8 depends on SOC_ESP32 || SOC_ESP32S2 9 help 10 Enables the ESP32 GPIO driver 11 12if GPIO_ESP32 13 14config GPIO_ESP32_0 15 bool "ESP32 GPIO (pins 0-31)" 16 default y 17 help 18 Include support for GPIO pins 0-31 on the ESP32. 19 20config GPIO_ESP32_1 21 bool "ESP32 GPIO (pins 32-39)" 22 default y 23 help 24 Include support for GPIO pins 32-39 on the ESP32. 25 26endif # GPIO_ESP32 27