2024-09-02 06:22:22 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
|
|
|
if ARCH_BOARD_CSK6011A_NANO
|
|
|
|
choice
|
|
|
|
prompt "Console Mode"
|
|
|
|
default CSK6_CONSOLE_UART0
|
|
|
|
|
2024-09-17 13:32:41 +02:00
|
|
|
config CSK6_CONSOLE_UART0
|
|
|
|
bool "USART0 is a console port"
|
|
|
|
select USART0_SERIALDRIVER
|
|
|
|
|
2024-09-02 06:22:22 +02:00
|
|
|
#TODO add support other port
|
|
|
|
endchoice # USART0 Mode
|
|
|
|
endif
|
|
|
|
|