mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-14 20:55:22 +00:00
Use this short header style in all Kconfig files: # <description> # <copyright> # <license> ... Also change all <description>s from # Kconfig[.extension] - Foo-related options to just # Foo-related options It's clear enough that it's about Kconfig. The <description> cleanup was done with this command, along with some manual cleanup (big letter at the start, etc.) git ls-files '*Kconfig*' | \ xargs sed -i -E '1 s/#\s*Kconfig[\w.-]*\s*-\s*/# /' Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
32 lines
587 B
Plaintext
32 lines
587 B
Plaintext
# ESP32 GPIO configuration options
|
|
|
|
# Copyright (c) 2017 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig GPIO_ESP32
|
|
bool "ESP32 GPIO"
|
|
depends on SOC_ESP32
|
|
select HAS_DTS_GPIO
|
|
help
|
|
Enables the ESP32 GPIO driver
|
|
|
|
if GPIO_ESP32
|
|
|
|
config GPIO_ESP32_IRQ
|
|
int "IRQ line for ESP32 GPIO pins"
|
|
default 10
|
|
|
|
config GPIO_ESP32_0
|
|
bool "ESP32 GPIO (pins 0-31)"
|
|
default y
|
|
help
|
|
Include support for GPIO pins 0-31 on the ESP32.
|
|
|
|
config GPIO_ESP32_1
|
|
bool "ESP32 GPIO (pins 32-39)"
|
|
default y
|
|
help
|
|
Include support for GPIO pins 32-39 on the ESP32.
|
|
|
|
endif # GPIO_ESP32
|