mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-26 19:55:55 +00:00
The SoC, driver, and board support for the CC2650 and CC2650 Sensortag aren't currently supported and we are removing them as such. If anyone is interesting in supporting this platform we can easily recovery it from git. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
71 lines
1.3 KiB
Plaintext
71 lines
1.3 KiB
Plaintext
# GPIO configuration options
|
|
|
|
# Copyright (c) 2015 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig GPIO
|
|
bool "GPIO Drivers"
|
|
help
|
|
Include GPIO drivers in system config
|
|
|
|
if GPIO
|
|
|
|
module = GPIO
|
|
module-str = gpio
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
config GPIO_SHELL
|
|
bool "Enable GPIO Shell"
|
|
help
|
|
Enable GPIO Shell for testing.
|
|
|
|
source "drivers/gpio/Kconfig.dw"
|
|
|
|
source "drivers/gpio/Kconfig.pcal9535a"
|
|
|
|
source "drivers/gpio/Kconfig.mcux"
|
|
|
|
source "drivers/gpio/Kconfig.mcux_igpio"
|
|
|
|
source "drivers/gpio/Kconfig.mcux_lpc"
|
|
|
|
source "drivers/gpio/Kconfig.mmio32"
|
|
|
|
source "drivers/gpio/Kconfig.stm32"
|
|
|
|
source "drivers/gpio/Kconfig.nrfx"
|
|
|
|
source "drivers/gpio/Kconfig.cmsdk_ahb"
|
|
|
|
source "drivers/gpio/Kconfig.cc13xx_cc26xx"
|
|
|
|
source "drivers/gpio/Kconfig.cc32xx"
|
|
|
|
source "drivers/gpio/Kconfig.sifive"
|
|
|
|
source "drivers/gpio/Kconfig.esp32"
|
|
|
|
source "drivers/gpio/Kconfig.gecko"
|
|
|
|
source "drivers/gpio/Kconfig.sam0"
|
|
|
|
source "drivers/gpio/Kconfig.sam"
|
|
|
|
source "drivers/gpio/Kconfig.sx1509b"
|
|
|
|
source "drivers/gpio/Kconfig.imx"
|
|
|
|
source "drivers/gpio/Kconfig.intel"
|
|
|
|
source "drivers/gpio/Kconfig.xec"
|
|
|
|
source "drivers/gpio/Kconfig.stellaris"
|
|
|
|
source "drivers/gpio/Kconfig.rv32m1"
|
|
|
|
source "drivers/gpio/Kconfig.ht16k33"
|
|
|
|
source "drivers/gpio/Kconfig.lmp90xxx"
|
|
|
|
endif # GPIO
|