mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-22 23:05:23 +00:00
Remove prompts from Kconfig options `UART_x_NRF_UART*` that select the type of nrfx driver (for UART or UARTE peripheral) to be used for a given instance. This prevents the options from being modified from configuration files. Instead, make one of these options selected by default according to the "compatible" property set for the corresponding UART node in devicetree. This eliminates the need of changing both the "compatible" property in devicetree and the Kconfig option selecting the driver type when a user wants to switch between UART and UARTE for a given instance. Since all `UART_x_NRF_UART*` options are made "hidden" by this commit, all their occurrences in configuration files are removed. Signed-off-by: Andrzej Głąbek <andrzej.glabek@nordicsemi.no>
22 lines
325 B
Plaintext
22 lines
325 B
Plaintext
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
CONFIG_SOC_SERIES_NRF91X=y
|
|
CONFIG_SOC_NRF9160_SICA=y
|
|
CONFIG_BOARD_ACTINIUS_ICARUS=y
|
|
|
|
# Enable MPU
|
|
CONFIG_ARM_MPU=y
|
|
|
|
# Enable TrustZone-M
|
|
CONFIG_ARM_TRUSTZONE_M=y
|
|
|
|
# enable GPIO
|
|
CONFIG_GPIO=y
|
|
|
|
# Enable uart driver
|
|
CONFIG_SERIAL=y
|
|
|
|
# enable console
|
|
CONFIG_CONSOLE=y
|
|
CONFIG_UART_CONSOLE=y
|