24 lines
487 B
Plaintext
24 lines
487 B
Plaintext
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# GPIO configuration options for the CC2650 SoC (Texas Instruments).
|
|
|
|
menuconfig GPIO_CC2650
|
|
bool "TI CC2650 GPIO driver"
|
|
depends on SOC_SERIES_CC2650
|
|
help
|
|
Enable the GPIO driver on boards equipped with TI CC2650.
|
|
|
|
if GPIO_CC2650
|
|
|
|
# A single block of GPIO exist.
|
|
|
|
config GPIO_CC2650_NAME
|
|
string "GPIO driver name."
|
|
default "GPIO_0"
|
|
|
|
config GPIO_CC2650_INIT_PRIO
|
|
int "GPIO driver initialization priority."
|
|
default 40
|
|
|
|
endif # GPIO_CC2650
|