mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-09 09:02:44 +00:00
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>
22 lines
328 B
Plaintext
22 lines
328 B
Plaintext
# Kconfig - OLIMEX-STM32-E407 board configuration
|
|
#
|
|
# Copyright (c) 2017, Erwin Rol <erwin@erwinrol.com>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
if BOARD_OLIMEX_STM32_E407
|
|
|
|
config BOARD
|
|
default "olimex_stm32_e407"
|
|
|
|
if UART_CONSOLE
|
|
|
|
config UART_STM32_PORT_1
|
|
default y
|
|
|
|
endif # UART_CONSOLE
|
|
|
|
endif # BOARD_OLIMEX_STM32_E407
|
|
|