36 lines
385 B
Plaintext
36 lines
385 B
Plaintext
|
# Kconfig - NXP LPC54114 platform configuration options
|
||
|
#
|
||
|
# Copyright (c) 2017, NXP
|
||
|
#
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
#
|
||
|
|
||
|
if SOC_LPC54114
|
||
|
|
||
|
config SOC
|
||
|
string
|
||
|
default lpc54114
|
||
|
|
||
|
if PINMUX
|
||
|
|
||
|
config PINMUX_MCUX_LPC
|
||
|
def_bool y
|
||
|
|
||
|
endif # PINMUX
|
||
|
|
||
|
if GPIO
|
||
|
|
||
|
config GPIO_MCUX_LPC
|
||
|
def_bool y
|
||
|
|
||
|
endif # GPIO
|
||
|
|
||
|
if SERIAL
|
||
|
|
||
|
config USART_MCUX_LPC
|
||
|
def_bool y
|
||
|
|
||
|
endif # SERIAL
|
||
|
|
||
|
endif # SOC_LPC54114
|