mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-11 15:22:40 +00:00
STM32 uart Kconfig instance flags were not following same naming scheme than other drivers (i2c, spi, ..) Update driver to use UART_X instead of UART_STM32_PORT_X Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
21 lines
286 B
Plaintext
21 lines
286 B
Plaintext
# Kconfig - STM3210C-EVAL board configuration
|
|
#
|
|
# Copyright (c) 2016 RnDity Sp. z o.o.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
if BOARD_STM3210C_EVAL
|
|
|
|
config BOARD
|
|
default "stm3210c_eval"
|
|
|
|
if UART_CONSOLE
|
|
|
|
config UART_2
|
|
default y
|
|
|
|
endif # UART_CONSOLE
|
|
|
|
endif # BOARD_STM3210C_EVAL
|