1# STM32H7B3I DISCOVERY KIT board configuration 2 3# Copyright (c) 2022 Byte-Lab d.o.o. <dev@byte-lab.com> 4# SPDX-License-Identifier: Apache-2.0 5 6if BOARD_STM32H7B3I_DK 7 8config BOARD 9 default "stm32h7b3i_dk" 10 11config INPUT 12 default y if LVGL 13 14config INPUT_FT5336_INTERRUPT 15 default y if INPUT_FT5336 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 if DISPLAY 21 22endif # BOARD_STM32H7B3I_DK 23