2016-05-18 22:49:04 +08:00
|
|
|
# Kconfig.nrf5 - Nordic Semiconductor nRF5X GPIO configuration options
|
|
|
|
#
|
|
|
|
# Copyright (c) 2016 Nordic Semiconductor ASA
|
|
|
|
#
|
2017-01-19 09:01:01 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2016-05-18 22:49:04 +08:00
|
|
|
#
|
|
|
|
|
|
|
|
menuconfig GPIO_NRF5
|
|
|
|
bool "Nordic Semiconductor nRF5X-based GPIO driver"
|
2016-07-21 22:47:36 +08:00
|
|
|
depends on GPIO && SOC_FAMILY_NRF5
|
2016-05-18 22:49:04 +08:00
|
|
|
default n
|
|
|
|
help
|
|
|
|
Enable GPIO driver for nRF5 line of MCUs.
|
|
|
|
|
|
|
|
if GPIO_NRF5
|
|
|
|
|
|
|
|
config GPIO_NRF5_P0
|
|
|
|
bool "nRF5x GPIO Port P0 options"
|
|
|
|
default n
|
|
|
|
help
|
2016-08-26 05:19:14 +08:00
|
|
|
Enable nRF5 GPIO port P0 config options.
|
2016-05-18 22:49:04 +08:00
|
|
|
|
|
|
|
config GPIO_NRF5_P0_DEV_NAME
|
|
|
|
string "GPIO Port P0 Device Name"
|
|
|
|
depends on GPIO_NRF5_P0
|
|
|
|
default "GPIO_0"
|
|
|
|
help
|
|
|
|
Specify the device name to be used for the GPIO port.
|
|
|
|
|
|
|
|
config GPIO_NRF5_PORT_P0_PRI
|
|
|
|
int "GPIOTE P0 interrupt priority"
|
|
|
|
depends on GPIO_NRF5_P0
|
2016-10-13 04:45:44 +08:00
|
|
|
range 0 1 if SOC_SERIES_NRF51X
|
|
|
|
range 0 5 if SOC_SERIES_NRF52X
|
|
|
|
default 1
|
2016-05-18 22:49:04 +08:00
|
|
|
help
|
|
|
|
nRF5X Port P0 IRQ priority.
|
|
|
|
|
|
|
|
endif # GPIO_NRF5
|