31 lines
362 B
Text
31 lines
362 B
Text
|
# Kconfig - STM32F756ZG Nucleo board configuration
|
||
|
#
|
||
|
# Copyright (c) 2018 AJ Palmer
|
||
|
#
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
#
|
||
|
|
||
|
if BOARD_NUCLEO_F756ZG
|
||
|
|
||
|
config BOARD
|
||
|
default "nucleo_f756zg"
|
||
|
|
||
|
if UART_CONSOLE
|
||
|
|
||
|
config UART_3
|
||
|
default y
|
||
|
|
||
|
endif # UART_CONSOLE
|
||
|
|
||
|
if SERIAL
|
||
|
|
||
|
config UART_2
|
||
|
default y
|
||
|
|
||
|
config UART_6
|
||
|
default y
|
||
|
|
||
|
endif # SERIAL
|
||
|
|
||
|
endif # BOARD_NUCLEO_F756ZG
|