1# STM32F7508-DK Discovery board configuration
2
3# Copyright (c) 2022, Rtone.
4# SPDX-License-Identifier: Apache-2.0
5
6if BOARD_STM32F7508_DK
7
8if NETWORKING
9
10config NET_L2_ETHERNET
11	default y
12
13endif # NETWORKING
14
15if DISPLAY
16
17# MEMC needs to be enabled in order to store
18# display buffer to external SDRAM connected to FMC
19config MEMC
20	default y
21
22endif # DISPLAY
23
24config INPUT
25	default y if LVGL
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_STM32F7508_DK
38