mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-15 21:55:56 +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>
36 lines
671 B
Plaintext
36 lines
671 B
Plaintext
# Copyright (c) 2018 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig GPIO_NRFX
|
|
bool "nRF GPIO driver"
|
|
default y
|
|
depends on SOC_FAMILY_NRF
|
|
select HAS_DTS_GPIO
|
|
help
|
|
Enable GPIO driver for nRF line of MCUs.
|
|
|
|
if GPIO_NRFX
|
|
|
|
config GPIO_NRF_INIT_PRIORITY
|
|
int "nRF GPIO initialization priority"
|
|
default 40
|
|
help
|
|
Initialization priority for nRF GPIO.
|
|
|
|
config GPIO_NRF_P0
|
|
bool "nRF GPIO Port P0"
|
|
depends on HAS_HW_NRF_GPIO0
|
|
default y
|
|
help
|
|
Enable nRF GPIO port P0 config options.
|
|
|
|
config GPIO_NRF_P1
|
|
bool "nRF GPIO Port P1"
|
|
depends on HAS_HW_NRF_GPIO1
|
|
default y
|
|
help
|
|
Enable nRF GPIO port P1 config options.
|
|
|
|
|
|
endif # GPIO_NRFX
|