1# STM32F746G DISCOVERY board configuration 2 3# Copyright (c) 2018 Yurii Hamann 4# SPDX-License-Identifier: Apache-2.0 5 6if BOARD_STM32F746G_DISCO 7 8if NETWORKING 9 10config NET_L2_ETHERNET 11 default y 12 13endif # NETWORKING 14 15config INPUT 16 default y if LVGL 17 18if DISPLAY 19 20# MEMC needs to be enabled in order to store 21# display buffer to external SDRAM connected to FMC 22config MEMC 23 default y 24 25endif # DISPLAY 26 27if INPUT 28 29config INPUT_FT5336_INTERRUPT 30 default y 31 32endif # INPUT 33 34config DISK_DRIVER_SDMMC 35 default y if DISK_DRIVERS 36 37endif # BOARD_STM32F746G_DISCO 38