In preparation for introducing a warning. Unquoted string defaults work through a quirk of Kconfig (undefined symbols get their name as their string value), but look confusing. It's done inconsistently now too. Suggested by Kumar Gala. Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
20 lines
307 B
Text
20 lines
307 B
Text
# Kconfig - STM32F469I-DISCO board configuration
|
|
#
|
|
# Copyright (c) 2016 Linaro Limited.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
if BOARD_STM32F469I_DISCO
|
|
|
|
config BOARD
|
|
default "stm32f469i_disco"
|
|
|
|
if UART_CONSOLE
|
|
|
|
config UART_STM32_PORT_3
|
|
default y
|
|
|
|
endif # UART_CONSOLE
|
|
|
|
endif # BOARD_STM32F469I_DISCO
|