ARM architecture supports lowconsole

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@930 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2008-09-18 14:48:26 +00:00
parent ca013679db
commit 959e7abb26
18 changed files with 66 additions and 11 deletions
+3
View File
@@ -145,6 +145,8 @@ CONFIG_HAVE_LIBM=n
# CONFIG_JULIAN_TIME - Enables Julian time conversions # CONFIG_JULIAN_TIME - Enables Julian time conversions
# CONFIG_DEV_CONSOLE - Set if architecture-specific logic # CONFIG_DEV_CONSOLE - Set if architecture-specific logic
# provides /dev/console. Enables stdout, stderr, stdin. # provides /dev/console. Enables stdout, stderr, stdin.
# CONFIG_DEV_LOWCONSOLE - Use the simple, low-level serial console
# driver (minimul support)
# #
CONFIG_EXAMPLE=ostest CONFIG_EXAMPLE=ostest
CONFIG_DEBUG=n CONFIG_DEBUG=n
@@ -159,6 +161,7 @@ CONFIG_START_MONTH=2
CONFIG_START_DAY=13 CONFIG_START_DAY=13
CONFIG_JULIAN_TIME=n CONFIG_JULIAN_TIME=n
CONFIG_DEV_CONSOLE=y CONFIG_DEV_CONSOLE=y
CONFIG_DEV_LOWCONSOLE=n
# #
# The following can be used to disable categories of # The following can be used to disable categories of
+3
View File
@@ -145,6 +145,8 @@ CONFIG_HAVE_LIBM=n
# CONFIG_JULIAN_TIME - Enables Julian time conversions # CONFIG_JULIAN_TIME - Enables Julian time conversions
# CONFIG_DEV_CONSOLE - Set if architecture-specific logic # CONFIG_DEV_CONSOLE - Set if architecture-specific logic
# provides /dev/console. Enables stdout, stderr, stdin. # provides /dev/console. Enables stdout, stderr, stdin.
# CONFIG_DEV_LOWCONSOLE - Use the simple, low-level serial console
# driver (minimul support)
# #
CONFIG_EXAMPLE=uip CONFIG_EXAMPLE=uip
CONFIG_DEBUG=n CONFIG_DEBUG=n
@@ -159,6 +161,7 @@ CONFIG_START_MONTH=2
CONFIG_START_DAY=13 CONFIG_START_DAY=13
CONFIG_JULIAN_TIME=n CONFIG_JULIAN_TIME=n
CONFIG_DEV_CONSOLE=y CONFIG_DEV_CONSOLE=y
CONFIG_DEV_LOWCONSOLE=n
# #
# The following can be used to disable categories of # The following can be used to disable categories of
+3
View File
@@ -145,6 +145,8 @@ CONFIG_UART_MODEM_2STOP=0
# CONFIG_JULIAN_TIME - Enables Julian time conversions # CONFIG_JULIAN_TIME - Enables Julian time conversions
# CONFIG_DEV_CONSOLE - Set if architecture-specific logic # CONFIG_DEV_CONSOLE - Set if architecture-specific logic
# provides /dev/console. Enables stdout, stderr, stdin. # provides /dev/console. Enables stdout, stderr, stdin.
# CONFIG_DEV_LOWCONSOLE - Use the simple, low-level serial console
# driver (minimul support)
# #
CONFIG_EXAMPLE=nettest CONFIG_EXAMPLE=nettest
CONFIG_DEBUG=n CONFIG_DEBUG=n
@@ -159,6 +161,7 @@ CONFIG_START_MONTH=2
CONFIG_START_DAY=13 CONFIG_START_DAY=13
CONFIG_JULIAN_TIME=n CONFIG_JULIAN_TIME=n
CONFIG_DEV_CONSOLE=y CONFIG_DEV_CONSOLE=y
CONFIG_DEV_LOWCONSOLE=n
# #
# The following can be used to disable categories of # The following can be used to disable categories of
+3
View File
@@ -145,6 +145,8 @@ CONFIG_HAVE_LIBM=n
# CONFIG_JULIAN_TIME - Enables Julian time conversions # CONFIG_JULIAN_TIME - Enables Julian time conversions
# CONFIG_DEV_CONSOLE - Set if architecture-specific logic # CONFIG_DEV_CONSOLE - Set if architecture-specific logic
# provides /dev/console. Enables stdout, stderr, stdin. # provides /dev/console. Enables stdout, stderr, stdin.
# CONFIG_DEV_LOWCONSOLE - Use the simple, low-level serial console
# driver (minimul support)
# #
CONFIG_EXAMPLE=nsh CONFIG_EXAMPLE=nsh
CONFIG_DEBUG=n CONFIG_DEBUG=n
@@ -159,6 +161,7 @@ CONFIG_START_MONTH=2
CONFIG_START_DAY=13 CONFIG_START_DAY=13
CONFIG_JULIAN_TIME=n CONFIG_JULIAN_TIME=n
CONFIG_DEV_CONSOLE=y CONFIG_DEV_CONSOLE=y
CONFIG_DEV_LOWCONSOLE=n
# #
# The following can be used to disable categories of # The following can be used to disable categories of
+3
View File
@@ -134,6 +134,8 @@ CONFIG_HAVE_LIBM=n
# CONFIG_JULIAN_TIME - Enables Julian time conversions # CONFIG_JULIAN_TIME - Enables Julian time conversions
# CONFIG_DEV_CONSOLE - Set if architecture-specific logic # CONFIG_DEV_CONSOLE - Set if architecture-specific logic
# provides /dev/console. Enables stdout, stderr, stdin. # provides /dev/console. Enables stdout, stderr, stdin.
# CONFIG_DEV_LOWCONSOLE - Use the simple, low-level serial console
# driver (minimul support)
# #
CONFIG_EXAMPLE=ostest CONFIG_EXAMPLE=ostest
CONFIG_DEBUG=n CONFIG_DEBUG=n
@@ -148,6 +150,7 @@ CONFIG_START_MONTH=2
CONFIG_START_DAY=13 CONFIG_START_DAY=13
CONFIG_JULIAN_TIME=n CONFIG_JULIAN_TIME=n
CONFIG_DEV_CONSOLE=y CONFIG_DEV_CONSOLE=y
CONFIG_DEV_LOWCONSOLE=n
# #
# The following can be used to disable categories of # The following can be used to disable categories of
+17 -9
View File
@@ -1,5 +1,5 @@
############################################################################ ############################################################################
# configs/mcu123-lpc214x/defconfig # configs/mcu123-lpc214x/ostest/defconfig
# #
# Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved. # Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <spudmonkey@racsa.co.cr> # Author: Gregory Nutt <spudmonkey@racsa.co.cr>
@@ -33,7 +33,7 @@
# #
############################################################################ ############################################################################
# #
# architecture selection # Architecture selection
# #
# CONFIG_ARCH - identifies the arch subdirectory and, hence, the # CONFIG_ARCH - identifies the arch subdirectory and, hence, the
# processor architecture. # processor architecture.
@@ -158,13 +158,15 @@ CONFIG_HAVE_LIBM=n
# CONFIG_JULIAN_TIME - Enables Julian time conversions # CONFIG_JULIAN_TIME - Enables Julian time conversions
# CONFIG_DEV_CONSOLE - Set if architecture-specific logic # CONFIG_DEV_CONSOLE - Set if architecture-specific logic
# provides /dev/console. Enables stdout, stderr, stdin. # provides /dev/console. Enables stdout, stderr, stdin.
# CONFIG_DEV_LOWCONSOLE - Use the simple, low-level serial console
# driver (minimul support)
# #
CONFIG_EXAMPLE=ostest CONFIG_EXAMPLE=ostest
CONFIG_DEBUG=n CONFIG_DEBUG=n
CONFIG_DEBUG_VERBOSE=n CONFIG_DEBUG_VERBOSE=n
CONFIG_MM_REGIONS=1 CONFIG_MM_REGIONS=1
CONFIG_ARCH_LOWPUTC=y CONFIG_ARCH_LOWPUTC=y
CONFIG_RR_INTERVAL=200 CONFIG_RR_INTERVAL=0
CONFIG_SCHED_INSTRUMENTATION=n CONFIG_SCHED_INSTRUMENTATION=n
CONFIG_TASK_NAME_SIZE=0 CONFIG_TASK_NAME_SIZE=0
CONFIG_START_YEAR=2008 CONFIG_START_YEAR=2008
@@ -172,6 +174,7 @@ CONFIG_START_MONTH=9
CONFIG_START_DAY=17 CONFIG_START_DAY=17
CONFIG_JULIAN_TIME=n CONFIG_JULIAN_TIME=n
CONFIG_DEV_CONSOLE=y CONFIG_DEV_CONSOLE=y
CONFIG_DEV_LOWCONSOLE=y
# #
# The following can be used to disable categories of # The following can be used to disable categories of
@@ -264,12 +267,12 @@ CONFIG_NPTHREAD_KEYS=4
CONFIG_NFILE_DESCRIPTORS=8 CONFIG_NFILE_DESCRIPTORS=8
CONFIG_NFILE_STREAMS=8 CONFIG_NFILE_STREAMS=8
CONFIG_NAME_MAX=32 CONFIG_NAME_MAX=32
CONFIG_STDIO_BUFFER_SIZE=512 CONFIG_STDIO_BUFFER_SIZE=256
CONFIG_NUNGET_CHARS=2 CONFIG_NUNGET_CHARS=2
CONFIG_PREALLOC_MQ_MSGS=8 CONFIG_PREALLOC_MQ_MSGS=4
CONFIG_MQ_MAXMSGSIZE=32 CONFIG_MQ_MAXMSGSIZE=32
CONFIG_MAX_WDOGPARMS=4 CONFIG_MAX_WDOGPARMS=2
CONFIG_PREALLOC_WDOGS=8 CONFIG_PREALLOC_WDOGS=4
CONFIG_PREALLOC_TIMERS=4 CONFIG_PREALLOC_TIMERS=4
# #
@@ -324,6 +327,11 @@ CONFIG_NET_BROADCAST=n
CONFIG_NET_DHCP_LIGHT=n CONFIG_NET_DHCP_LIGHT=n
CONFIG_NET_RESOLV_ENTRIES=4 CONFIG_NET_RESOLV_ENTRIES=4
#
# Settings for examples/ostest
CONFIG_EXAMPLES_OSTEST_LOOPS=1
CONFIG_EXAMPLES_OSTEST_STACKSIZE=512
# #
# Settings for examples/nsh # Settings for examples/nsh
CONFIG_EXAMPLES_NSH_CONSOLE=y CONFIG_EXAMPLES_NSH_CONSOLE=y
@@ -354,8 +362,8 @@ CONFIG_EXAMPLES_NSH_NETMASK=(255<<24|255<<16|255<<8|0)
CONFIG_BOOT_FROM_FLASH=y CONFIG_BOOT_FROM_FLASH=y
CONFIG_CUSTOM_STACK=n CONFIG_CUSTOM_STACK=n
CONFIG_STACK_POINTER= CONFIG_STACK_POINTER=
CONFIG_PROC_STACK_SIZE=1024 CONFIG_PROC_STACK_SIZE=512
CONFIG_PTHREAD_STACK_MIN=256 CONFIG_PTHREAD_STACK_MIN=256
CONFIG_PTHREAD_STACK_DEFAULT=1024 CONFIG_PTHREAD_STACK_DEFAULT=512
CONFIG_HEAP_BASE= CONFIG_HEAP_BASE=
CONFIG_HEAP_SIZE= CONFIG_HEAP_SIZE=
+3
View File
@@ -143,6 +143,8 @@ CONFIG_HAVE_LIBM=n
# CONFIG_JULIAN_TIME - Enables Julian time conversions # CONFIG_JULIAN_TIME - Enables Julian time conversions
# CONFIG_DEV_CONSOLE - Set if architecture-specific logic # CONFIG_DEV_CONSOLE - Set if architecture-specific logic
# provides /dev/console. Enables stdout, stderr, stdin. # provides /dev/console. Enables stdout, stderr, stdin.
# CONFIG_DEV_LOWCONSOLE - Use the simple, low-level serial console
# driver (minimul support)
# #
CONFIG_EXAMPLE=nettest CONFIG_EXAMPLE=nettest
CONFIG_DEBUG=n CONFIG_DEBUG=n
@@ -157,6 +159,7 @@ CONFIG_START_MONTH=8
CONFIG_START_DAY=29 CONFIG_START_DAY=29
CONFIG_JULIAN_TIME=n CONFIG_JULIAN_TIME=n
CONFIG_DEV_CONSOLE=y CONFIG_DEV_CONSOLE=y
CONFIG_DEV_LOWCONSOLE=n
# #
# The following can be used to disable categories of # The following can be used to disable categories of
+3
View File
@@ -143,6 +143,8 @@ CONFIG_HAVE_LIBM=n
# CONFIG_JULIAN_TIME - Enables Julian time conversions # CONFIG_JULIAN_TIME - Enables Julian time conversions
# CONFIG_DEV_CONSOLE - Set if architecture-specific logic # CONFIG_DEV_CONSOLE - Set if architecture-specific logic
# provides /dev/console. Enables stdout, stderr, stdin. # provides /dev/console. Enables stdout, stderr, stdin.
# CONFIG_DEV_LOWCONSOLE - Use the simple, low-level serial console
# driver (minimul support)
# #
CONFIG_EXAMPLE=nsh CONFIG_EXAMPLE=nsh
CONFIG_DEBUG=n CONFIG_DEBUG=n
@@ -157,6 +159,7 @@ CONFIG_START_MONTH=9
CONFIG_START_DAY=12 CONFIG_START_DAY=12
CONFIG_JULIAN_TIME=n CONFIG_JULIAN_TIME=n
CONFIG_DEV_CONSOLE=y CONFIG_DEV_CONSOLE=y
CONFIG_DEV_LOWCONSOLE=n
# #
# The following can be used to disable categories of # The following can be used to disable categories of
+3
View File
@@ -143,6 +143,8 @@ CONFIG_HAVE_LIBM=n
# CONFIG_JULIAN_TIME - Enables Julian time conversions # CONFIG_JULIAN_TIME - Enables Julian time conversions
# CONFIG_DEV_CONSOLE - Set if architecture-specific logic # CONFIG_DEV_CONSOLE - Set if architecture-specific logic
# provides /dev/console. Enables stdout, stderr, stdin. # provides /dev/console. Enables stdout, stderr, stdin.
# CONFIG_DEV_LOWCONSOLE - Use the simple, low-level serial console
# driver (minimul support)
# #
CONFIG_EXAMPLE=ostest CONFIG_EXAMPLE=ostest
CONFIG_DEBUG=n CONFIG_DEBUG=n
@@ -157,6 +159,7 @@ CONFIG_START_MONTH=8
CONFIG_START_DAY=29 CONFIG_START_DAY=29
CONFIG_JULIAN_TIME=n CONFIG_JULIAN_TIME=n
CONFIG_DEV_CONSOLE=y CONFIG_DEV_CONSOLE=y
CONFIG_DEV_LOWCONSOLE=n
# #
# The following can be used to disable categories of # The following can be used to disable categories of
+3
View File
@@ -143,6 +143,8 @@ CONFIG_HAVE_LIBM=n
# CONFIG_JULIAN_TIME - Enables Julian time conversions # CONFIG_JULIAN_TIME - Enables Julian time conversions
# CONFIG_DEV_CONSOLE - Set if architecture-specific logic # CONFIG_DEV_CONSOLE - Set if architecture-specific logic
# provides /dev/console. Enables stdout, stderr, stdin. # provides /dev/console. Enables stdout, stderr, stdin.
# CONFIG_DEV_LOWCONSOLE - Use the simple, low-level serial console
# driver (minimul support)
# #
CONFIG_EXAMPLE=udp CONFIG_EXAMPLE=udp
CONFIG_DEBUG=n CONFIG_DEBUG=n
@@ -157,6 +159,7 @@ CONFIG_START_MONTH=8
CONFIG_START_DAY=29 CONFIG_START_DAY=29
CONFIG_JULIAN_TIME=n CONFIG_JULIAN_TIME=n
CONFIG_DEV_CONSOLE=y CONFIG_DEV_CONSOLE=y
CONFIG_DEV_LOWCONSOLE=n
# #
# The following can be used to disable categories of # The following can be used to disable categories of
+3
View File
@@ -143,6 +143,8 @@ CONFIG_HAVE_LIBM=n
# CONFIG_JULIAN_TIME - Enables Julian time conversions # CONFIG_JULIAN_TIME - Enables Julian time conversions
# CONFIG_DEV_CONSOLE - Set if architecture-specific logic # CONFIG_DEV_CONSOLE - Set if architecture-specific logic
# provides /dev/console. Enables stdout, stderr, stdin. # provides /dev/console. Enables stdout, stderr, stdin.
# CONFIG_DEV_LOWCONSOLE - Use the simple, low-level serial console
# driver (minimul support)
# #
CONFIG_EXAMPLE=uip CONFIG_EXAMPLE=uip
CONFIG_DEBUG=n CONFIG_DEBUG=n
@@ -157,6 +159,7 @@ CONFIG_START_MONTH=8
CONFIG_START_DAY=29 CONFIG_START_DAY=29
CONFIG_JULIAN_TIME=n CONFIG_JULIAN_TIME=n
CONFIG_DEV_CONSOLE=n CONFIG_DEV_CONSOLE=n
CONFIG_DEV_LOWCONSOLE=n
# #
# The following can be used to disable categories of # The following can be used to disable categories of
+3
View File
@@ -131,6 +131,8 @@ CONFIG_HAVE_LIBM=n
# Used to initialize the internal time logic. # Used to initialize the internal time logic.
# CONFIG_DEV_CONSOLE - Set if architecture-specific logic # CONFIG_DEV_CONSOLE - Set if architecture-specific logic
# provides /dev/console. Enables stdout, stderr, stdin. # provides /dev/console. Enables stdout, stderr, stdin.
# CONFIG_DEV_LOWCONSOLE - Use the simple, low-level serial console
# driver (minimul support)
# #
CONFIG_EXAMPLE=ostest CONFIG_EXAMPLE=ostest
CONFIG_DEBUG=n CONFIG_DEBUG=n
@@ -145,6 +147,7 @@ CONFIG_START_MONTH=2
CONFIG_START_DAY=21 CONFIG_START_DAY=21
CONFIG_JULIAN_TIME=n CONFIG_JULIAN_TIME=n
CONFIG_DEV_CONSOLE=n CONFIG_DEV_CONSOLE=n
CONFIG_DEV_LOWCONSOLE=n
# #
# The following can be used to disable categories of # The following can be used to disable categories of
+3
View File
@@ -80,6 +80,8 @@ CONFIG_ARCH_BOARD_SIM=y
# Used to initialize the internal time logic. # Used to initialize the internal time logic.
# CONFIG_DEV_CONSOLE - Set if architecture-specific logic # CONFIG_DEV_CONSOLE - Set if architecture-specific logic
# provides /dev/console. Enables stdout, stderr, stdin. # provides /dev/console. Enables stdout, stderr, stdin.
# CONFIG_DEV_LOWCONSOLE - Use the simple, low-level serial console
# driver (minimul support)
# #
CONFIG_EXAMPLE=mount CONFIG_EXAMPLE=mount
CONFIG_DEBUG=y CONFIG_DEBUG=y
@@ -94,6 +96,7 @@ CONFIG_START_MONTH=6
CONFIG_START_DAY=1 CONFIG_START_DAY=1
CONFIG_JULIAN_TIME=n CONFIG_JULIAN_TIME=n
CONFIG_DEV_CONSOLE=y CONFIG_DEV_CONSOLE=y
CONFIG_DEV_LOWCONSOLE=n
# #
# The following can be used to disable categories of # The following can be used to disable categories of
+3
View File
@@ -80,6 +80,8 @@ CONFIG_ARCH_BOARD_SIM=y
# Used to initialize the internal time logic. # Used to initialize the internal time logic.
# CONFIG_DEV_CONSOLE - Set if architecture-specific logic # CONFIG_DEV_CONSOLE - Set if architecture-specific logic
# provides /dev/console. Enables stdout, stderr, stdin. # provides /dev/console. Enables stdout, stderr, stdin.
# CONFIG_DEV_LOWCONSOLE - Use the simple, low-level serial console
# driver (minimul support)
# #
CONFIG_EXAMPLE=nettest CONFIG_EXAMPLE=nettest
CONFIG_DEBUG=n CONFIG_DEBUG=n
@@ -94,6 +96,7 @@ CONFIG_START_MONTH=8
CONFIG_START_DAY=16 CONFIG_START_DAY=16
CONFIG_JULIAN_TIME=n CONFIG_JULIAN_TIME=n
CONFIG_DEV_CONSOLE=y CONFIG_DEV_CONSOLE=y
CONFIG_DEV_LOWCONSOLE=n
# #
# The following can be used to disable categories of # The following can be used to disable categories of
+3
View File
@@ -80,6 +80,8 @@ CONFIG_ARCH_BOARD_SIM=y
# Used to initialize the internal time logic. # Used to initialize the internal time logic.
# CONFIG_DEV_CONSOLE - Set if architecture-specific logic # CONFIG_DEV_CONSOLE - Set if architecture-specific logic
# provides /dev/console. Enables stdout, stderr, stdin. # provides /dev/console. Enables stdout, stderr, stdin.
# CONFIG_DEV_LOWCONSOLE - Use the simple, low-level serial console
# driver (minimul support)
# #
CONFIG_EXAMPLE=nsh CONFIG_EXAMPLE=nsh
CONFIG_DEBUG=y CONFIG_DEBUG=y
@@ -94,6 +96,7 @@ CONFIG_START_MONTH=6
CONFIG_START_DAY=1 CONFIG_START_DAY=1
CONFIG_JULIAN_TIME=n CONFIG_JULIAN_TIME=n
CONFIG_DEV_CONSOLE=y CONFIG_DEV_CONSOLE=y
CONFIG_DEV_LOWCONSOLE=n
# #
# The following can be used to disable categories of # The following can be used to disable categories of
+3
View File
@@ -80,6 +80,8 @@ CONFIG_ARCH_BOARD_SIM=y
# Used to initialize the internal time logic. # Used to initialize the internal time logic.
# CONFIG_DEV_CONSOLE - Set if architecture-specific logic # CONFIG_DEV_CONSOLE - Set if architecture-specific logic
# provides /dev/console. Enables stdout, stderr, stdin. # provides /dev/console. Enables stdout, stderr, stdin.
# CONFIG_DEV_LOWCONSOLE - Use the simple, low-level serial console
# driver (minimul support)
# #
CONFIG_EXAMPLE=ostest CONFIG_EXAMPLE=ostest
CONFIG_DEBUG=y CONFIG_DEBUG=y
@@ -94,6 +96,7 @@ CONFIG_START_MONTH=2
CONFIG_START_DAY=27 CONFIG_START_DAY=27
CONFIG_JULIAN_TIME=n CONFIG_JULIAN_TIME=n
CONFIG_DEV_CONSOLE=y CONFIG_DEV_CONSOLE=y
CONFIG_DEV_LOWCONSOLE=n
CONFIG_MUTEX_TYPES=y CONFIG_MUTEX_TYPES=y
# #
+3
View File
@@ -80,6 +80,8 @@ CONFIG_ARCH_BOARD_SIM=y
# Used to initialize the internal time logic. # Used to initialize the internal time logic.
# CONFIG_DEV_CONSOLE - Set if architecture-specific logic # CONFIG_DEV_CONSOLE - Set if architecture-specific logic
# provides /dev/console. Enables stdout, stderr, stdin. # provides /dev/console. Enables stdout, stderr, stdin.
# CONFIG_DEV_LOWCONSOLE - Use the simple, low-level serial console
# driver (minimul support)
# #
CONFIG_EXAMPLE=pashello CONFIG_EXAMPLE=pashello
CONFIG_DEBUG=n CONFIG_DEBUG=n
@@ -94,6 +96,7 @@ CONFIG_START_MONTH=2
CONFIG_START_DAY=27 CONFIG_START_DAY=27
CONFIG_JULIAN_TIME=n CONFIG_JULIAN_TIME=n
CONFIG_DEV_CONSOLE=y CONFIG_DEV_CONSOLE=y
CONFIG_DEV_LOWCONSOLE=n
# #
# The following can be used to disable categories of # The following can be used to disable categories of
+1 -2
View File
@@ -131,9 +131,8 @@ CONFIG_START_YEAR=2007
CONFIG_START_MONTH=2 CONFIG_START_MONTH=2
CONFIG_START_DAY=21 CONFIG_START_DAY=21
CONFIG_JULIAN_TIME=n CONFIG_JULIAN_TIME=n
CONFIG_DEV_CONSOLE=y
CONFIG_HAVE_LOWUARTINIT=n CONFIG_HAVE_LOWUARTINIT=n
CONFIG_DEV_LOWCONSOLE=y CONFIG_DEV_CONSOLE=y
CONFIG_DEV_LOWCONSOLE=n CONFIG_DEV_LOWCONSOLE=n
# #