mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-01 02:16:05 +00:00
Use this short header style in all Kconfig files: # <description> # <copyright> # <license> ... Also change all <description>s from # Kconfig[.extension] - Foo-related options to just # Foo-related options It's clear enough that it's about Kconfig. The <description> cleanup was done with this command, along with some manual cleanup (big letter at the start, etc.) git ls-files '*Kconfig*' | \ xargs sed -i -E '1 s/#\s*Kconfig[\w.-]*\s*-\s*/# /' Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
53 lines
815 B
Plaintext
53 lines
815 B
Plaintext
# ST Microelectronics STM32F4 MCU line
|
|
|
|
# Copyright (c) 2016 Linaro Limited.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
choice
|
|
prompt "STM32F4x MCU Selection"
|
|
depends on SOC_SERIES_STM32F4X
|
|
|
|
config SOC_STM32F401XC
|
|
bool "STM32F401XC"
|
|
|
|
config SOC_STM32F401XE
|
|
bool "STM32F401XE"
|
|
|
|
config SOC_STM32F405XG
|
|
bool "STM32F405XG"
|
|
|
|
config SOC_STM32F407XG
|
|
bool "STM32F407XG"
|
|
|
|
config SOC_STM32F411XE
|
|
bool "STM32F411XE"
|
|
|
|
config SOC_STM32F412CG
|
|
bool "STM32F412CG"
|
|
|
|
config SOC_STM32F412ZG
|
|
bool "STM32F412ZG"
|
|
|
|
config SOC_STM32F413XX
|
|
bool "STM32F413XX"
|
|
|
|
config SOC_STM32F415XX
|
|
bool "STM32F415XX"
|
|
|
|
config SOC_STM32F417XX
|
|
bool "STM32F417XX"
|
|
|
|
config SOC_STM32F429XX
|
|
bool "STM32F429XI"
|
|
|
|
config SOC_STM32F437XX
|
|
bool "STM32F437XX"
|
|
|
|
config SOC_STM32F446XX
|
|
bool "STM32F446XX"
|
|
|
|
config SOC_STM32F469XX
|
|
bool "STM32F469XX"
|
|
|
|
endchoice
|