mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-31 12:46:38 +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>
28 lines
719 B
Plaintext
28 lines
719 B
Plaintext
# nRF9160 PCA10090 board configuration
|
|
|
|
# Copyright (c) 2018 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if BOARD_NRF9160_PCA10090 || BOARD_NRF9160_PCA10090NS
|
|
|
|
config BOARD_NRF52840_GPIO_RESET
|
|
bool "Use nRF52840 PCA10090 GPIO reset pin"
|
|
default y if BT_H4
|
|
help
|
|
Use a GPIO pin to reset the nRF52840 controller and let it wait until all
|
|
bytes traveling to the H4 device have been received and drained, thus
|
|
ensuring communication can begin correctly.
|
|
|
|
if BOARD_NRF52840_GPIO_RESET
|
|
|
|
config BOARD_NRF52840_GPIO_RESET_PIN
|
|
int "Reset pin"
|
|
range 17 23
|
|
default 23
|
|
help
|
|
GPIO pin on the nRF9160 used to reset the nRF52840.
|
|
|
|
endif
|
|
|
|
endif # BOARD_NRF9160_PCA10090 || BOARD_NRF9160_PCA10090NS
|