38 lines
548 B
Plaintext
38 lines
548 B
Plaintext
# STM32F746G DISCOVERY board configuration
|
|
|
|
# Copyright (c) 2018 Yurii Hamann
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if BOARD_STM32F746G_DISCO
|
|
|
|
if NETWORKING
|
|
|
|
config NET_L2_ETHERNET
|
|
default y
|
|
|
|
endif # NETWORKING
|
|
|
|
config INPUT
|
|
default y if LVGL
|
|
|
|
if DISPLAY
|
|
|
|
# MEMC needs to be enabled in order to store
|
|
# display buffer to external SDRAM connected to FMC
|
|
config MEMC
|
|
default y
|
|
|
|
endif # DISPLAY
|
|
|
|
if INPUT
|
|
|
|
config INPUT_FT5336_INTERRUPT
|
|
default y
|
|
|
|
endif # INPUT
|
|
|
|
config DISK_DRIVER_SDMMC
|
|
default y if DISK_DRIVERS
|
|
|
|
endif # BOARD_STM32F746G_DISCO
|