1# ST Microelectronics STM32H7 MCU line 2 3# Copyright (c) 2019 Linaro Limited 4# Copyright (c) 2022 SILA Embedded Solutions GmbH <office@embedded-solutions.at> 5# SPDX-License-Identifier: Apache-2.0 6 7# Kconfig symbols common to STM32H7 series 8 9if SOC_SERIES_STM32H7X 10 11rsource "Kconfig.defconfig.stm32h7*" 12 13config ROM_START_OFFSET 14 default 0x400 if BOOTLOADER_MCUBOOT 15 default 0x0 if !BOOTLOADER_MCUBOOT 16 17if LVGL 18 19config LV_DRAW_DMA2D_HAL_INCLUDE 20 default "stm32h7xx.h" 21 22endif # LVGL 23 24endif # SOC_SERIES_STM32H7X 25