40 lines
421 B
Plaintext
40 lines
421 B
Plaintext
# Kconfig - NXP LPC54114 M0 platform configuration options
|
|
|
|
#
|
|
# Copyright (c) 2017, NXP
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
if SOC_LPC54114_M0
|
|
|
|
config SOC
|
|
string
|
|
default "lpc54114_m0"
|
|
|
|
if PINMUX
|
|
|
|
config PINMUX_MCUX_LPC
|
|
default n
|
|
|
|
endif # PINMUX
|
|
|
|
config GPIO
|
|
default n
|
|
|
|
if GPIO
|
|
|
|
config GPIO_MCUX_LPC
|
|
default n
|
|
|
|
endif # GPIO
|
|
|
|
if SERIAL
|
|
|
|
config USART_MCUX_LPC
|
|
default n
|
|
|
|
endif # SERIAL
|
|
|
|
endif # SOC_LPC54114_M0
|