mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-19 20:15:23 +00:00
Replace use of Kconfig UART_X symbols by calls to DT API. Clean driver from symbols definitions Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
27 lines
354 B
Plaintext
27 lines
354 B
Plaintext
# 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 NETWORKING
|
|
|
|
config NET_L2_ETHERNET
|
|
default y
|
|
|
|
config ETH_STM32_HAL
|
|
default y
|
|
|
|
endif # NETWORKING
|
|
|
|
|
|
config PWM_STM32_1
|
|
default y
|
|
depends on PWM
|
|
|
|
endif # BOARD_NUCLEO_F756ZG
|