Files
zephyr/soc/gd/gd32/gd32f4xx/Kconfig.soc
Gerard Marull-Paretas b40bf25e5e soc: gd_gd32: reorganize folders
Move soc/gd_gd32 to soc/gd/gd32.

Signed-off-by: Gerard Marull-Paretas <gerard@teslabs.com>
2024-03-01 15:49:59 +01:00

34 lines
645 B
Plaintext

# Copyright (c) 2021, Teslabs Engineering S.L.
# Copyright (c) 2022, Rtone.
# SPDX-License-Identifier: Apache-2.0
config SOC_SERIES_GD32F4XX
bool
help
Enable support for GigaDevice GD32F4XX MCU series
config SOC_SERIES
default "gd32f4xx" if SOC_SERIES_GD32F4XX
config SOC_GD32F405
bool
select SOC_SERIES_GD32F4XX
config SOC_GD32F407
bool
select SOC_SERIES_GD32F4XX
config SOC_GD32F450
bool
select SOC_SERIES_GD32F4XX
config SOC_GD32F470
bool
select SOC_SERIES_GD32F4XX
config SOC
default "gd32f405" if SOC_GD32F405
default "gd32f407" if SOC_GD32F407
default "gd32f450" if SOC_GD32F450
default "gd32f470" if SOC_GD32F470