2016-05-18 07:49:04 -07:00
|
|
|
# Kconfig.nrf5 - Nordic Semiconductor nRF5X GPIO configuration options
|
|
|
|
#
|
|
|
|
# Copyright (c) 2016 Nordic Semiconductor ASA
|
|
|
|
#
|
2017-01-18 17:01:01 -08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2016-05-18 07:49:04 -07:00
|
|
|
#
|
|
|
|
|
|
|
|
menuconfig GPIO_NRF5
|
|
|
|
bool "Nordic Semiconductor nRF5X-based GPIO driver"
|
2018-03-19 13:51:25 +01:00
|
|
|
depends on GPIO && SOC_FAMILY_NRF
|
2016-05-18 07:49:04 -07: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-25 18:19:14 -03:00
|
|
|
Enable nRF5 GPIO port P0 config options.
|
2016-05-18 07:49:04 -07: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-12 17:45:44 -03:00
|
|
|
range 0 1 if SOC_SERIES_NRF51X
|
|
|
|
range 0 5 if SOC_SERIES_NRF52X
|
|
|
|
default 1
|
2016-05-18 07:49:04 -07:00
|
|
|
help
|
|
|
|
nRF5X Port P0 IRQ priority.
|
|
|
|
|
|
|
|
endif # GPIO_NRF5
|