26 lines
427 B
Plaintext
26 lines
427 B
Plaintext
# Kconfig - ST Microelectronics STM32L4 MCU line
|
|
#
|
|
# Copyright (c) 2016 Open-RnD Sp. z o.o.
|
|
# Copyright (c) 2016 BayLibre, SAS
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
choice
|
|
prompt "STM32L4x MCU Selection"
|
|
depends on SOC_SERIES_STM32L4X
|
|
|
|
config SOC_STM32L476XG
|
|
bool "STM32L476XG"
|
|
|
|
config SOC_STM32L496XG
|
|
bool "STM32L496XG"
|
|
|
|
config SOC_STM32L432XC
|
|
bool "STM32L432XC"
|
|
|
|
config SOC_STM32L475XG
|
|
bool "STM32L475XG"
|
|
|
|
endchoice
|