28 lines
348 B
Plaintext
28 lines
348 B
Plaintext
# Kconfig - STM32F4DISCOVERY board configuration
|
|
#
|
|
# Copyright (c) 2016 Linaro Limited.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
if BOARD_STM32F4_DISCO
|
|
|
|
config BOARD
|
|
default stm32f4_disco
|
|
|
|
if UART_CONSOLE
|
|
|
|
config UART_STM32_PORT_2
|
|
default y
|
|
|
|
endif # UART_CONSOLE
|
|
|
|
if PWM
|
|
|
|
config PWM_STM32_2
|
|
default y
|
|
|
|
endif # PWM
|
|
|
|
endif # BOARD_STM32F4_DISCO
|