33 lines
653 B
Plaintext
33 lines
653 B
Plaintext
|
# Kconfig - LPC LPC54XXX MCU line
|
||
|
#
|
||
|
# Copyright (c) 2017, NXP
|
||
|
#
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
#
|
||
|
|
||
|
choice
|
||
|
prompt "LPC LPC54XXX MCU Selection"
|
||
|
depends on SOC_SERIES_LPC54XXX
|
||
|
|
||
|
config SOC_LPC54114
|
||
|
bool "SOC_LPC54114"
|
||
|
select HAS_MCUX
|
||
|
|
||
|
endchoice
|
||
|
|
||
|
if SOC_SERIES_LPC54XXX
|
||
|
|
||
|
config SOC_PART_NUMBER_LPC54114J256BD64
|
||
|
bool
|
||
|
|
||
|
config SOC_PART_NUMBER_LPC54XXX
|
||
|
string
|
||
|
default "LPC54114J256BD64" if SOC_PART_NUMBER_LPC54114J256BD64
|
||
|
|
||
|
help
|
||
|
This string holds the full part number of the SoC. It is a hidden
|
||
|
option that you should not set directly. The part number selection
|
||
|
choice defines the default value for this string.
|
||
|
|
||
|
endif # SOC_SERIES_LPC54XXX
|