1# STM32H745XI DISCOVERY board configuration 2 3# Copyright (c) 2020 Alexander Kozhinov <ak.alexander.kozhinov@gmail.com> 4# Copyright (c) 2024 Tomas Jurena <jurena@utb.cz> 5# SPDX-License-Identifier: Apache-2.0 6 7if BOARD_STM32H745I_DISCO 8 9if NETWORKING 10 11config NET_L2_ETHERNET 12 default y 13 14# STM32H745I-DISCO have PHY connected to address 1 15config ETH_STM32_HAL_PHY_ADDRESS 16 default 1 17 18endif # NETWORKING 19 20config MEMC 21 default y if DISPLAY 22 23 24endif # BOARD_STM32H745I_DISCO 25