23 lines
384 B
Plaintext
23 lines
384 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see misc/tools/kconfig-language.txt.
|
|
#
|
|
|
|
if ARCH_CHIP_DM320
|
|
comment "DM320 Configuration Options"
|
|
|
|
menu "DM320 Peripheral Selections"
|
|
|
|
config DM320_UART0
|
|
bool
|
|
default y
|
|
select ARCH_HAVE_UART0
|
|
|
|
config DM320_UART1
|
|
bool
|
|
default y
|
|
select ARCH_HAVE_UART1
|
|
|
|
endmenu # DM320 Peripheral Selections
|
|
endif # ARCH_CHIP_DM320
|