diff --git a/ChangeLog b/ChangeLog index 53dd40d91d..ed4e737a7a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -6901,4 +6901,6 @@ * fs/nxffs/nxffs_stat.c: Looks like stat() has the same problem as the one reported by Lzyy (2014-3-6). * configs/skp16c26/ostest: Configuration converted to use the - kconfig-frontends tools (2014-3-5) \ No newline at end of file + kconfig-frontends tools (2014-3-6) + * configs/us7032evb1/ostest: Configuration converted to use the + kconfig-frontends tools (2014-3-6) diff --git a/arch/hc/src/m9s12/Kconfig b/arch/hc/src/m9s12/Kconfig index a2968c85ff..c0fce2f9b2 100644 --- a/arch/hc/src/m9s12/Kconfig +++ b/arch/hc/src/m9s12/Kconfig @@ -11,119 +11,15 @@ menu "M9S12 Peripheral Selection" config HCS12_SCI0 bool "SCI0" default n + select ARCH_HAVE_SCI0 config HCS12_SCI1 bool "SCI1" default n + select ARCH_HAVE_SCI1 endmenu # M9S12 Peripheral Selection -menu "SCI Configuration" - depends on HCS12_SCI0 || HCS12_SCI1 - -if HCS12_SCI0 - -config SCI0_RXBUFSIZE - int "SCI0 receive buffer size" - default 256 - ---help--- - Characters are buffered as they are received. This specifies - the size of the receive buffer. - -config SCI0_TXBUFSIZE - int "SCI0 transmit buffer size" - default 256 - ---help--- - Characters are buffered before being sent. This specifies - the size of the transmit buffer. - -config SCI0_BAUD - int "SCI0 BAUD rate" - default 115200 - ---help--- - The configured BAUD of the SCI. - -config SCI0_BITS - int "SCI0 character size" - default 8 - ---help--- - The number of bits. Must be either 7 or 8. - -config SCI0_PARITY - int "Parity setting" - default 0 - ---help--- - 0=no parity, 1=odd parity, 2=even parity - -config SCI0_2STOP - int "SCI0 use 2 stop bits" - default 0 - ---help--- - 1=Two stop bits - -endif # HCS12_SCI0 - -if HCS12_SCI1 - -config SCI1_RXBUFSIZE - int "SCI1 receive buffer size" - default 256 - ---help--- - Characters are buffered as they are received. This specifies - the size of the receive buffer. - -config SCI1_TXBUFSIZE - int "SCI1 transmit buffer size" - default 256 - ---help--- - Characters are buffered before being sent. This specifies - the size of the transmit buffer. - -config SCI1_BAUD - int "SCI1 BAUD rate" - default 115200 - ---help--- - The configured BAUD of the SCI. - -config SCI1_BITS - int "SCI1 character size" - default 8 - ---help--- - The number of bits. Must be either 7 or 8. - -config SCI1_PARITY - int "Parity setting" - default 0 - ---help--- - 0=no parity, 1=odd parity, 2=even parity - -config SCI1_2STOP - int "SCI1 use 2 stop bits" - default 0 - ---help--- - 1=Two stop bits - -endif # HCS12_SCI1 - -choice - prompt "SCI Serial Console" - default SCI0_SERIAL_CONSOLE if HCS12_SCI0 - default SCI1_SERIAL_CONSOLE if !HCS12_SCI0 - -config NOSCI_SERIAL_CONSOLE - bool "No SCI serial console" - -config SCI0_SERIAL_CONSOLE - bool "SCI0 serial console" - depends on HCS12_SCI0 - -config SCI1_SERIAL_CONSOLE - bool "SCI1 serial console" - depends on HCS12_SCI1 - -endchoice -endmenu # SCI Configuration - menu "HSC12 Build Options" config HCS12_SERIALMON diff --git a/arch/sh/Kconfig b/arch/sh/Kconfig index bfb1f5973a..15575a9e4f 100644 --- a/arch/sh/Kconfig +++ b/arch/sh/Kconfig @@ -4,17 +4,20 @@ # if ARCH_SH + choice prompt "SH chip selection" default ARCH_CHIP_SH7032 config ARCH_CHIP_SH7032 bool "SH7032" + select ARCH_SH1 ---help--- Hitachi/Renesas SH7032 (SH1) config ARCH_CHIP_M30262F8 bool "M30262F8" + select ARCH_M16C ---help--- Renesas M30262F8 (M16C) @@ -22,11 +25,11 @@ endchoice config ARCH_SH1 bool - default y if ARCH_CHIP_SH7032 + default n config ARCH_M16C bool - default y if ARCH_CHIP_M30262F8 + default n config ARCH_CHIP string @@ -37,4 +40,4 @@ source arch/sh/src/common/Kconfig source arch/sh/src/m16c/Kconfig source arch/sh/src/sh1/Kconfig -endif +endif # ARCH_SH diff --git a/arch/sh/src/sh1/Kconfig b/arch/sh/src/sh1/Kconfig index 3fe3ebb7d9..560c3d91c7 100644 --- a/arch/sh/src/sh1/Kconfig +++ b/arch/sh/src/sh1/Kconfig @@ -6,4 +6,65 @@ if ARCH_SH1 comment "SH-1 Configuration Options" +menu "SH-1 Peripheral Selections" + +config SH1_DMAC0 + bool "DMAC0" + default n + +config SH1_DMAC1 + bool "DMAC1" + default n + +config SH1_DMAC2 + bool "DMAC2" + default n + +config SH1_DMAC3 + bool "DMAC3" + default n + +config SH1_ITU1 + bool "ITU2" + default n + +config SH1_ITU2 + bool "ITU2" + default n + +config SH1_ITU3 + bool "ITU3" + default n + +config SH1_ITU4 + bool "ITU4" + default n + +config SH1_SCI0 + bool "SCI0" + default n + select ARCH_HAVE_SCI0 + +config SH1_SCI1 + bool "SCI1" + default n + select ARCH_HAVE_SCI1 + +config SH1_PCU + bool "PCU" + default n + +config SH1_AD + bool "AD" + default n + +config SH1_WDT + bool "WDT" + default n + +config SH1_CMI + bool "CMI" + default n + +endmenu # SH-1 Peripheral Selections endif diff --git a/configs/Kconfig b/configs/Kconfig index 2bff281bd0..654b7f8ce0 100644 --- a/configs/Kconfig +++ b/configs/Kconfig @@ -764,6 +764,7 @@ config ARCH_BOARD_US7032EVB1 bool "Hitachi SH-1/US7032EVB1 board" depends on ARCH_CHIP_SH7032 select ARCH_HAVE_LEDS + select ARCH_HAVE_BUTTONS ---help--- This is a port of the Hitachi SH-1 on the Hitachi SH-1/US7032EVB1 board. STATUS: Work has just began on this port. diff --git a/configs/us7032evb1/README.txt b/configs/us7032evb1/README.txt index d50d5f35ea..a8d03aba2f 100644 --- a/configs/us7032evb1/README.txt +++ b/configs/us7032evb1/README.txt @@ -6,7 +6,7 @@ The port is basically complete and many examples run correctly. However, there are remaining instabilities that make the port un-usable. The nature of these is not understood; the behavior is that certain SH-1 instructions stop working as advertised. This could be a silicon problem, some pipeline issue that is not -handled properly by the gcc 3.4.5 toolchain (which has very limit SH-1 support +handled properly by the gcc 3.4.5 toolchain (which has very limited SH-1 support to begin with), or perhaps with the CMON debugger. At any rate, I have exhausted all of the energy that I am willing to put into this cool old processor for the time being. @@ -55,30 +55,51 @@ shterm Configurations ^^^^^^^^^^^^^^ -Each SH-1 configuration is maintained in a sub-directory and -can be selected as follow: +Common Configuration Notes +-------------------------- - cd tools - ./configure.sh us7032evb1/ - cd - - . ./setenv.sh + 1. Each SH-1 configuration is maintained in a sub-directory and + can be selected as follow: -Where is one of the following: + cd tools + ./configure.sh us7032evb1/ + cd - + . ./setenv.sh -ostest -^^^^^^as advertised. This could be a silicon problem, some pipeline issue that is not handled properly by the gcc 3.4.5 tool + Where is one of the configuration sub-directories described in + the following paragraph. -This configuration directory, performs a simple OS test using -examples/ostest. + 2. These configurations use the mconf-based configuration tool. To + change a configurations using that tool, you should: -nsh -^^^ + a. Build and install the kconfig-mconf tool. See nuttx/README.txt + and misc/tools/ -Configures the NuttShell (nsh) located at examples/nsh. The -Configuration enables only the serial NSH interfaces. + b. Execute 'make menuconfig' in nuttx/ in order to start the + reconfiguration process. -NOTE: At present, the NSH example does not run. See the "Status" -discussion above for a full explanation. + 3. By default, all configurations assume the NuttX Buildroot toolchain + under Linux (should work under Windows with Cygwin as well). This + is easily reconfigured: + + CONFIG_HOST_LINUX=y + CONFIG_ARM_TOOLCHAIN_BUILDROOT=y + +Configuration Sub-Directories +----------------------------- + + ostest + + This configuration directory, performs a simple OS test using + examples/ostest. + + nsh + + Configures the NuttShell (nsh) located at examples/nsh. The + Configuration enables only the serial NSH interfaces. + + NOTE: At present, the NSH example does not run. See the "Status" + discussion above for a full explanation. Configuration Options ^^^^^^^^^^^^^^^^^^^^^ diff --git a/configs/us7032evb1/ostest/appconfig b/configs/us7032evb1/ostest/appconfig deleted file mode 100644 index ba7253e3f1..0000000000 --- a/configs/us7032evb1/ostest/appconfig +++ /dev/null @@ -1,39 +0,0 @@ -############################################################################ -# configs/us7032evb1/ostest/appconfig -# -# Copyright (C) 2011 Gregory Nutt. All rights reserved. -# Author: Gregory Nutt -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions -# are met: -# -# 1. Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# 2. Redistributions in binary form must reproduce the above copyright -# notice, this list of conditions and the following disclaimer in -# the documentation and/or other materials provided with the -# distribution. -# 3. Neither the name NuttX nor the names of its contributors may be -# used to endorse or promote products derived from this software -# without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS -# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED -# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -############################################################################ - -# Path to example in apps/examples containing the user_start entry point - -CONFIGURED_APPS += examples/ostest - diff --git a/configs/us7032evb1/ostest/defconfig b/configs/us7032evb1/ostest/defconfig index c75dbcf4b1..1326f9f191 100644 --- a/configs/us7032evb1/ostest/defconfig +++ b/configs/us7032evb1/ostest/defconfig @@ -1,172 +1,194 @@ -############################################################################ -# configs/us7032evb1/ostest/defconfig # -# Copyright (C) 2008-2010 Gregory Nutt. All rights reserved. -# Author: Gregory Nutt +# Automatically generated file; DO NOT EDIT. +# Nuttx/ Configuration # -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions -# are met: -# -# 1. Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# 2. Redistributions in binary form must reproduce the above copyright -# notice, this list of conditions and the following disclaimer in -# the documentation and/or other materials provided with the -# distribution. -# 3. Neither the name NuttX nor the names of its contributors may be -# used to endorse or promote products derived from this software -# without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS -# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED -# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -############################################################################ -# -# Architecture selection -# -CONFIG_ARCH="sh" -CONFIG_ARCH_SH1=y -CONFIG_ARCH_CHIP="sh1" -CONFIG_ARCH_CHIP_SH7032=y -CONFIG_ARCH_BOARD="us7032evb1" -CONFIG_ARCH_BOARD_US7032EVB1=y -CONFIG_ENDIAN_BIG=y -CONFIG_ARCH_NOINTC=y -CONFIG_ARCH_IRQPRIO=y -CONFIG_BOARD_LOOPSPERMSEC=572 -CONFIG_ARCH_LEDS=y -CONFIG_ARCH_BUTTONS=y -CONFIG_RAM_SIZE=57344 -CONFIG_RAM_START=0x0a002000 -CONFIG_ARCH_INTERRUPTSTACK=0 -CONFIG_ARCH_STACKDUMP=y +CONFIG_NUTTX_NEWCONFIG=y # -# SH-1 specific boot/build settings +# Build Setup # -CONFIG_SH1_DMAC0=n -CONFIG_SH1_DMAC1=n -CONFIG_SH1_DMAC2=n -CONFIG_SH1_DMAC3=n -CONFIG_SH1_ITU1=n -CONFIG_SH1_ITU2=n -CONFIG_SH1_ITU3=n -CONFIG_SH1_ITU4=n -CONFIG_SH1_SCI0=n -CONFIG_SH1_SCI1=y -CONFIG_SH1_PCU=n -CONFIG_SH1_AD=n -CONFIG_SH1_WDT=n -CONFIG_SH1_CMI=n +# CONFIG_EXPERIMENTAL is not set +# CONFIG_DEFAULT_SMALL is not set +CONFIG_HOST_LINUX=y +# CONFIG_HOST_OSX is not set +# CONFIG_HOST_WINDOWS is not set +# CONFIG_HOST_OTHER is not set # -# SH1 specific device driver settings +# Build Configuration # -CONFIG_SCI0_SERIAL_CONSOLE=n -CONFIG_SCI1_SERIAL_CONSOLE=y -CONFIG_SCI0_TXBUFSIZE=64 -CONFIG_SCI1_TXBUFSIZE=256 -CONFIG_SCI0_RXBUFSIZE=32 -CONFIG_SCI1_RXBUFSIZE=256 -CONFIG_SCI0_BAUD=9600 -CONFIG_SCI1_BAUD=9600 -CONFIG_SCI0_BITS=8 -CONFIG_SCI1_BITS=8 -CONFIG_SCI0_PARITY=0 -CONFIG_SCI1_PARITY=0 -CONFIG_SCI0_2STOP=0 -CONFIG_SCI1_2STOP=0 +# CONFIG_APPS_DIR="../apps" +# CONFIG_BUILD_2PASS is not set # -# General build options +# Binary Output Formats # -CONFIG_RRLOAD_BINARY=n -CONFIG_INTELHEX_BINARY=n +# CONFIG_RRLOAD_BINARY is not set +# CONFIG_INTELHEX_BINARY is not set CONFIG_MOTOROLA_SREC=y CONFIG_RAW_BINARY=y # -# General OS setup +# Customize Header Files # -CONFIG_USER_ENTRYPOINT="ostest_main" -CONFIG_DEBUG=n -CONFIG_DEBUG_VERBOSE=n -CONFIG_DEBUG_SYMBOLS=n -CONFIG_MM_REGIONS=1 -CONFIG_ARCH_LOWPUTC=y +# CONFIG_ARCH_STDBOOL_H is not set +# CONFIG_ARCH_MATH_H is not set +# CONFIG_ARCH_FLOAT_H is not set +# CONFIG_ARCH_STDARG_H is not set + +# +# Debug Options +# +# CONFIG_DEBUG is not set +# CONFIG_ARCH_HAVE_STACKCHECK is not set +# CONFIG_ARCH_HAVE_HEAPCHECK is not set +# CONFIG_DEBUG_SYMBOLS is not set +# CONFIG_ARCH_HAVE_CUSTOMOPT is not set +# CONFIG_DEBUG_NOOPT is not set +CONFIG_DEBUG_FULLOPT=y + +# +# System Type +# +# CONFIG_ARCH_8051 is not set +# CONFIG_ARCH_ARM is not set +# CONFIG_ARCH_AVR is not set +# CONFIG_ARCH_HC is not set +# CONFIG_ARCH_MIPS is not set +# CONFIG_ARCH_RGMP is not set +CONFIG_ARCH_SH=y +# CONFIG_ARCH_SIM is not set +# CONFIG_ARCH_X86 is not set +# CONFIG_ARCH_Z16 is not set +# CONFIG_ARCH_Z80 is not set +CONFIG_ARCH="sh" +CONFIG_ARCH_CHIP="sh1" +CONFIG_ARCH_CHIP_SH7032=y +# CONFIG_ARCH_CHIP_M30262F8 is not set +CONFIG_ARCH_SH1=y +# CONFIG_ARCH_M16C is not set + +# +# SH-1 Configuration Options +# + +# +# SH-1 Peripheral Selections +# +# CONFIG_SH1_DMAC0 is not set +# CONFIG_SH1_DMAC1 is not set +# CONFIG_SH1_DMAC2 is not set +# CONFIG_SH1_DMAC3 is not set +# CONFIG_SH1_ITU1 is not set +# CONFIG_SH1_ITU2 is not set +# CONFIG_SH1_ITU3 is not set +# CONFIG_SH1_ITU4 is not set +# CONFIG_SH1_SCI0 is not set +CONFIG_SH1_SCI1=y +# CONFIG_SH1_PCU is not set +# CONFIG_SH1_AD is not set +# CONFIG_SH1_WDT is not set +# CONFIG_SH1_CMI is not set + +# +# Architecture Options +# +CONFIG_ARCH_NOINTC=y +# CONFIG_ARCH_VECNOTIRQ is not set +# CONFIG_ARCH_DMA is not set +# CONFIG_ARCH_HAVE_IRQPRIO is not set +# CONFIG_CUSTOM_STACK is not set +# CONFIG_ADDRENV is not set +# CONFIG_ARCH_HAVE_VFORK is not set +# CONFIG_ARCH_HAVE_MMU is not set +# CONFIG_ARCH_NAND_HWECC is not set +CONFIG_ARCH_STACKDUMP=y +CONFIG_ENDIAN_BIG=y +# CONFIG_ARCH_IDLE_CUSTOM is not set +# CONFIG_ARCH_HAVE_RAMFUNCS is not set +# CONFIG_ARCH_HAVE_RAMVECTORS is not set + +# +# Board Settings +# +CONFIG_BOARD_LOOPSPERMSEC=572 +# CONFIG_ARCH_CALIBRATION is not set + +# +# Interrupt options +# +CONFIG_ARCH_HAVE_INTERRUPTSTACK=y +CONFIG_ARCH_INTERRUPTSTACK=0 +# CONFIG_ARCH_HAVE_HIPRI_INTERRUPT is not set + +# +# Boot options +# +# CONFIG_BOOT_RUNFROMEXTSRAM is not set +CONFIG_BOOT_RUNFROMFLASH=y +# CONFIG_BOOT_RUNFROMISRAM is not set +# CONFIG_BOOT_RUNFROMSDRAM is not set +# CONFIG_BOOT_COPYTORAM is not set + +# +# Boot Memory Configuration +# +CONFIG_RAM_START=0x0a002000 +CONFIG_RAM_SIZE=57344 +# CONFIG_ARCH_HAVE_SDRAM is not set + +# +# Board Selection +# +CONFIG_ARCH_BOARD_US7032EVB1=y +# CONFIG_ARCH_BOARD_CUSTOM is not set +CONFIG_ARCH_BOARD="us7032evb1" + +# +# Common Board Options +# +CONFIG_ARCH_HAVE_LEDS=y +CONFIG_ARCH_LEDS=y +CONFIG_ARCH_HAVE_BUTTONS=y +CONFIG_ARCH_BUTTONS=y + +# +# Board-Specific Options +# + +# +# RTOS Features +# +# CONFIG_BOARD_INITIALIZE is not set +CONFIG_MSEC_PER_TICK=10 +# CONFIG_SYSTEM_TIME64 is not set CONFIG_RR_INTERVAL=0 -CONFIG_SCHED_INSTRUMENTATION=n +# CONFIG_SCHED_CPULOAD is not set +# CONFIG_SCHED_INSTRUMENTATION is not set CONFIG_TASK_NAME_SIZE=0 +# CONFIG_SCHED_HAVE_PARENT is not set +# CONFIG_JULIAN_TIME is not set CONFIG_START_YEAR=2008 CONFIG_START_MONTH=11 CONFIG_START_DAY=10 -CONFIG_JULIAN_TIME=n CONFIG_DEV_CONSOLE=y -CONFIG_DEV_LOWCONSOLE=y -CONFIG_MUTEX_TYPES=n -CONFIG_PRIORITY_INHERITANCE=n -CONFIG_SEM_PREALLOCHOLDERS=0 -CONFIG_SEM_NNESTPRIO=0 -CONFIG_FDCLONE_DISABLE=n -CONFIG_FDCLONE_STDIO=n +# CONFIG_MUTEX_TYPES is not set +# CONFIG_PRIORITY_INHERITANCE is not set +# CONFIG_FDCLONE_DISABLE is not set +# CONFIG_FDCLONE_STDIO is not set CONFIG_SDCLONE_DISABLE=y - -# -# The following can be used to disable categories of -# APIs supported by the OS. If the compiler supports -# weak functions, then it should not be necessary to -# disable functions unless you want to restrict usage -# of those APIs. -# -# There are certain dependency relationships in these -# features. -# -# o mq_notify logic depends on signals to awaken tasks -# waiting for queues to become full or empty. -# o pthread_condtimedwait() depends on signals to wake -# up waiting tasks. -# +# CONFIG_SCHED_WAITPID is not set +# CONFIG_SCHED_STARTHOOK is not set +# CONFIG_SCHED_ATEXIT is not set +# CONFIG_SCHED_ONEXIT is not set +CONFIG_USER_ENTRYPOINT="ostest_main" +CONFIG_DISABLE_OS_API=y CONFIG_DISABLE_CLOCK=y CONFIG_DISABLE_POSIX_TIMERS=y CONFIG_DISABLE_PTHREAD=y CONFIG_DISABLE_SIGNALS=y CONFIG_DISABLE_MQUEUE=y -CONFIG_DISABLE_MOUNTPOINT=y CONFIG_DISABLE_ENVIRON=y -CONFIG_DISABLE_POLL=y - -# -# Misc libc settings -# -CONFIG_NOPRINTF_FIELDWIDTH=y - -# -# Allow for architecture optimized implementations -# -# The architecture can provide optimized versions of the -# following to improve sysem performance -# -CONFIG_ARCH_MEMCPY=n -CONFIG_ARCH_MEMCMP=n -CONFIG_ARCH_MEMMOVE=n -CONFIG_ARCH_MEMSET=n -CONFIG_ARCH_STRCMP=n -CONFIG_ARCH_STRCPY=n -CONFIG_ARCH_STRNCPY=n -CONFIG_ARCH_STRLEN=n -CONFIG_ARCH_STRNLEN=n -CONFIG_ARCH_BZERO=n # # Sizes of configurable things (0 disables) @@ -177,154 +199,410 @@ CONFIG_NPTHREAD_KEYS=0 CONFIG_NFILE_DESCRIPTORS=8 CONFIG_NFILE_STREAMS=8 CONFIG_NAME_MAX=32 -CONFIG_STDIO_BUFFER_SIZE=0 -CONFIG_NUNGET_CHARS=0 CONFIG_PREALLOC_MQ_MSGS=0 CONFIG_MQ_MAXMSGSIZE=0 CONFIG_MAX_WDOGPARMS=2 CONFIG_PREALLOC_WDOGS=4 CONFIG_PREALLOC_TIMERS=0 -# -# Filesystem configuration -# -CONFIG_FS_FAT=n -CONFIG_FS_ROMFS=n - -# -# Maintain legacy build behavior (revisit) -# - -CONFIG_MMCSD=y -CONFIG_MMCSD_SPI=y -CONFIG_MTD=y - -# -# SPI-based MMC/SD driver -# -CONFIG_MMCSD_NSLOTS=1 -CONFIG_MMCSD_READONLY=n - -# -# TCP/IP and UDP support via uIP -# -CONFIG_NET=n -CONFIG_NET_IPv6=n -CONFIG_NSOCKET_DESCRIPTORS=0 -CONFIG_NET_SOCKOPTS=y -CONFIG_NET_BUFSIZE=420 -CONFIG_NET_TCP=n -CONFIG_NET_TCP_CONNS=40 -CONFIG_NET_MAX_LISTENPORTS=40 -CONFIG_NET_UDP=n -CONFIG_NET_UDP_CHECKSUMS=y -#CONFIG_NET_UDP_CONNS=10 -CONFIG_NET_ICMP=n -CONFIG_NET_ICMP_PING=n -#CONFIG_NET_PINGADDRCONF=0 -CONFIG_NET_STATISTICS=y -#CONFIG_NET_RECEIVE_WINDOW= -#CONFIG_NET_ARPTAB_SIZE=8 -CONFIG_NET_BROADCAST=n - -# -# UIP Network Utilities -# -CONFIG_NET_DHCP_LIGHT=n -CONFIG_NET_RESOLV_ENTRIES=4 - -# -# USB Device Configuration -# -CONFIG_USBDEV=n -CONFIG_USBDEV_ISOCHRONOUS=n -CONFIG_USBDEV_DUALSPEED=n -CONFIG_USBDEV_SELFPOWERED=y -CONFIG_USBDEV_REMOTEWAKEUP=n -CONFIG_USBDEV_MAXPOWER=100 -CONFIG_USBDEV_TRACE=n -CONFIG_USBDEV_TRACE_NRECORDS=128 - -# -# USB Serial Device Configuration -# -CONFIG_PL2303=n -CONFIG_PL2303_EPINTIN=1 -CONFIG_PL2303_EPBULKOUT=2 -CONFIG_PL2303_EPBULKIN=5 -CONFIG_PL2303_NWRREQS=4 -CONFIG_PL2303_NRDREQS=4 -CONFIG_PL2303_VENDORID=0x067b -CONFIG_PL2303_PRODUCTID=0x2303 -CONFIG_PL2303_VENDORSTR="Nuttx" -CONFIG_PL2303_PRODUCTSTR="USBdev Serial" -CONFIG_PL2303_RXBUFSIZE=512 -CONFIG_PL2303_TXBUFSIZE=512 - -# -# USB Storage Device Configuration -# -CONFIG_USBMSC=n -CONFIG_USBMSC_EP0MAXPACKET=64 -CONFIG_USBMSC_EPBULKOUT=2 -CONFIG_USBMSC_EPBULKIN=5 -CONFIG_USBMSC_NRDREQS=2 -CONFIG_USBMSC_NWRREQS=2 -CONFIG_USBMSC_BULKINREQLEN=256 -CONFIG_USBMSC_BULKOUTREQLEN=256 -CONFIG_USBMSC_VENDORID=0x584e -CONFIG_USBMSC_VENDORSTR="NuttX" -CONFIG_USBMSC_PRODUCTID=0x5342 -CONFIG_USBMSC_PRODUCTSTR="USBdev Storage" -CONFIG_USBMSC_VERSIONNO=0x0399 -CONFIG_USBMSC_REMOVABLE=y - -# -# Settings for examples/ostest -CONFIG_EXAMPLES_OSTEST_LOOPS=1 -CONFIG_EXAMPLES_OSTEST_STACKSIZE=4096 -CONFIG_EXAMPLES_OSTEST_NBARRIER_THREADS=3 - -# -# Settings for apps/nshlib -# -CONFIG_NSH_FILEIOSIZE=512 -CONFIG_NSH_STRERROR=n -CONFIG_NSH_LINELEN=64 -CONFIG_NSH_NESTDEPTH=3 -CONFIG_NSH_DISABLESCRIPT=n -CONFIG_NSH_DISABLEBG=n -CONFIG_NSH_ROMFSETC=n -CONFIG_NSH_CONSOLE=y -CONFIG_NSH_TELNET=n -CONFIG_NSH_IOBUFFER_SIZE=512 -CONFIG_NSH_DHCPC=n -CONFIG_NSH_NOMAC=n -CONFIG_NSH_IPADDR=0x0a000002 -CONFIG_NSH_DRIPADDR=0x0a000001 -CONFIG_NSH_NETMASK=0xffffff00 -CONFIG_NSH_ROMFSMOUNTPT="/etc" -CONFIG_NSH_INITSCRIPT="init.d/rcS" -CONFIG_NSH_ROMFSDEVNO=0 -CONFIG_NSH_ROMFSSECTSIZE=64 -CONFIG_NSH_FATDEVNO=1 -CONFIG_NSH_FATSECTSIZE=512 -CONFIG_NSH_FATNSECTORS=1024 -CONFIG_NSH_FATMOUNTPT="/tmp" - -# -# Architecture-specific NSH options -CONFIG_NSH_MMCSDSPIPORTNO=1 -CONFIG_NSH_MMCSDSLOTNO=0 -CONFIG_NSH_MMCSDMINOR=0 - # # Stack and heap information # -CONFIG_BOOT_RUNFROMFLASH=n -CONFIG_BOOT_COPYTORAM=n -CONFIG_CUSTOM_STACK=n CONFIG_IDLETHREAD_STACKSIZE=1024 CONFIG_USERMAIN_STACKSIZE=1024 CONFIG_PTHREAD_STACK_MIN=256 CONFIG_PTHREAD_STACK_DEFAULT=1024 + +# +# Device Drivers +# +CONFIG_DISABLE_POLL=y +CONFIG_DEV_NULL=y +# CONFIG_DEV_ZERO is not set +# CONFIG_LOOP is not set +# CONFIG_RAMDISK is not set +# CONFIG_CAN is not set +# CONFIG_ARCH_HAVE_PWM_PULSECOUNT is not set +# CONFIG_PWM is not set +# CONFIG_ARCH_HAVE_I2CRESET is not set +# CONFIG_I2C is not set +# CONFIG_SPI is not set +# CONFIG_I2S is not set +# CONFIG_RTC is not set +# CONFIG_WATCHDOG is not set +# CONFIG_ANALOG is not set +# CONFIG_AUDIO_DEVICES is not set +# CONFIG_VIDEO_DEVICES is not set +# CONFIG_BCH is not set +# CONFIG_INPUT is not set +# CONFIG_LCD is not set +# CONFIG_MMCSD is not set +# CONFIG_MTD is not set +# CONFIG_PIPES is not set +# CONFIG_PM is not set +# CONFIG_POWER is not set +# CONFIG_SENSORS is not set +# CONFIG_SERCOMM_CONSOLE is not set +CONFIG_SERIAL=y +CONFIG_DEV_LOWCONSOLE=y +# CONFIG_16550_UART is not set +# CONFIG_ARCH_HAVE_UART is not set +# CONFIG_ARCH_HAVE_UART0 is not set +# CONFIG_ARCH_HAVE_UART1 is not set +# CONFIG_ARCH_HAVE_UART2 is not set +# CONFIG_ARCH_HAVE_UART3 is not set +# CONFIG_ARCH_HAVE_UART4 is not set +# CONFIG_ARCH_HAVE_UART5 is not set +# CONFIG_ARCH_HAVE_UART6 is not set +# CONFIG_ARCH_HAVE_UART7 is not set +# CONFIG_ARCH_HAVE_UART8 is not set +# CONFIG_ARCH_HAVE_SCI0 is not set +CONFIG_ARCH_HAVE_SCI1=y +# CONFIG_ARCH_HAVE_USART0 is not set +# CONFIG_ARCH_HAVE_USART1 is not set +# CONFIG_ARCH_HAVE_USART2 is not set +# CONFIG_ARCH_HAVE_USART3 is not set +# CONFIG_ARCH_HAVE_USART4 is not set +# CONFIG_ARCH_HAVE_USART5 is not set +# CONFIG_ARCH_HAVE_USART6 is not set +# CONFIG_ARCH_HAVE_USART7 is not set +# CONFIG_ARCH_HAVE_USART8 is not set + +# +# USART Configuration +# +CONFIG_MCU_SERIAL=y +CONFIG_SCI1_SERIAL_CONSOLE=y +# CONFIG_NO_SERIAL_CONSOLE is not set + +# +# SCI1 Configuration +# +CONFIG_SCI1_RXBUFSIZE=256 +CONFIG_SCI1_TXBUFSIZE=256 +CONFIG_SCI1_BAUD=9600 +CONFIG_SCI1_BITS=8 +CONFIG_SCI1_PARITY=0 +CONFIG_SCI1_2STOP=0 +# CONFIG_SERIAL_IFLOWCONTROL is not set +# CONFIG_SERIAL_OFLOWCONTROL is not set +# CONFIG_USBDEV is not set +# CONFIG_USBHOST is not set +# CONFIG_WIRELESS is not set + +# +# System Logging Device Options +# + +# +# System Logging +# +# CONFIG_RAMLOG is not set + +# +# Networking Support +# +# CONFIG_ARCH_HAVE_NET is not set +# CONFIG_ARCH_HAVE_PHY is not set +# CONFIG_NET is not set + +# +# File Systems +# + +# +# File system configuration +# +CONFIG_DISABLE_MOUNTPOINT=y +# CONFIG_DISABLE_PSEUDOFS_OPERATIONS is not set +# CONFIG_FS_READABLE is not set +# CONFIG_FS_WRITABLE is not set +# CONFIG_FS_RAMMAP is not set +# CONFIG_FS_PROCFS is not set + +# +# System Logging +# +# CONFIG_SYSLOG_ENABLE is not set +# CONFIG_SYSLOG is not set + +# +# Graphics Support +# +# CONFIG_NX is not set + +# +# Memory Management +# +# CONFIG_MM_MULTIHEAP is not set +# CONFIG_MM_SMALL is not set +CONFIG_MM_REGIONS=1 +# CONFIG_ARCH_HAVE_HEAP2 is not set +# CONFIG_GRAN is not set + +# +# Audio Support +# +# CONFIG_AUDIO is not set + +# +# Binary Formats +# +# CONFIG_BINFMT_DISABLE is not set +# CONFIG_NXFLAT is not set +# CONFIG_ELF is not set +# CONFIG_BUILTIN is not set +# CONFIG_PIC is not set +# CONFIG_SYMTAB_ORDEREDBYNAME is not set + +# +# Library Routines +# + +# +# Standard C Library Options +# +CONFIG_STDIO_BUFFER_SIZE=0 +CONFIG_STDIO_LINEBUFFER=y +CONFIG_NUNGET_CHARS=0 +# CONFIG_LIBM is not set +CONFIG_NOPRINTF_FIELDWIDTH=y +# CONFIG_LIBC_FLOATINGPOINT is not set +CONFIG_LIB_RAND_ORDER=1 +# CONFIG_EOL_IS_CR is not set +# CONFIG_EOL_IS_LF is not set +# CONFIG_EOL_IS_BOTH_CRLF is not set +CONFIG_EOL_IS_EITHER_CRLF=y +# CONFIG_LIBC_EXECFUNCS is not set +CONFIG_POSIX_SPAWN_PROXY_STACKSIZE=1024 +CONFIG_TASK_SPAWN_DEFAULT_STACKSIZE=2048 +# CONFIG_LIBC_STRERROR is not set +# CONFIG_LIBC_PERROR_STDOUT is not set +CONFIG_ARCH_LOWPUTC=y +CONFIG_LIB_SENDFILE_BUFSIZE=512 +# CONFIG_ARCH_ROMGETC is not set +# CONFIG_ARCH_OPTIMIZED_FUNCTIONS is not set + +# +# Non-standard Library Support +# +# CONFIG_LIB_KBDCODEC is not set +# CONFIG_LIB_SLCDCODEC is not set + +# +# Basic CXX Support +# +# CONFIG_C99_BOOL8 is not set +# CONFIG_HAVE_CXX is not set + +# +# Application Configuration +# + +# +# Built-In Applications +# + +# +# Examples +# +# CONFIG_EXAMPLES_BUTTONS is not set +# CONFIG_EXAMPLES_CAN is not set +# CONFIG_EXAMPLES_CONFIGDATA is not set +# CONFIG_EXAMPLES_DHCPD is not set +# CONFIG_EXAMPLES_ELF is not set +# CONFIG_EXAMPLES_FTPC is not set +# CONFIG_EXAMPLES_FTPD is not set +# CONFIG_EXAMPLES_HELLO is not set +# CONFIG_EXAMPLES_HELLOXX is not set +# CONFIG_EXAMPLES_JSON is not set +# CONFIG_EXAMPLES_HIDKBD is not set +# CONFIG_EXAMPLES_KEYPADTEST is not set +# CONFIG_EXAMPLES_IGMP is not set +# CONFIG_EXAMPLES_LCDRW is not set +# CONFIG_EXAMPLES_MM is not set +# CONFIG_EXAMPLES_MODBUS is not set +# CONFIG_EXAMPLES_MOUNT is not set +# CONFIG_EXAMPLES_NRF24L01TERM is not set +# CONFIG_EXAMPLES_NSH is not set +# CONFIG_EXAMPLES_NULL is not set +# CONFIG_EXAMPLES_NX is not set +# CONFIG_EXAMPLES_NXCONSOLE is not set +# CONFIG_EXAMPLES_NXFFS is not set +# CONFIG_EXAMPLES_NXFLAT is not set +# CONFIG_EXAMPLES_NXHELLO is not set +# CONFIG_EXAMPLES_NXIMAGE is not set +# CONFIG_EXAMPLES_NXLINES is not set +# CONFIG_EXAMPLES_NXTEXT is not set +CONFIG_EXAMPLES_OSTEST=y +CONFIG_EXAMPLES_OSTEST_LOOPS=1 +CONFIG_EXAMPLES_OSTEST_STACKSIZE=4096 +CONFIG_EXAMPLES_OSTEST_NBARRIER_THREADS=3 +CONFIG_EXAMPLES_OSTEST_RR_RANGE=10000 +CONFIG_EXAMPLES_OSTEST_RR_RUNS=10 +# CONFIG_EXAMPLES_PASHELLO is not set +# CONFIG_EXAMPLES_PIPE is not set +# CONFIG_EXAMPLES_POLL is not set +# CONFIG_EXAMPLES_POSIXSPAWN is not set +# CONFIG_EXAMPLES_QENCODER is not set +# CONFIG_EXAMPLES_RGMP is not set +# CONFIG_EXAMPLES_ROMFS is not set +# CONFIG_EXAMPLES_SENDMAIL is not set +# CONFIG_EXAMPLES_SERLOOP is not set +# CONFIG_EXAMPLES_SLCD is not set +# CONFIG_EXAMPLES_SMART is not set +# CONFIG_EXAMPLES_TCPECHO is not set +# CONFIG_EXAMPLES_TELNETD is not set +# CONFIG_EXAMPLES_THTTPD is not set +# CONFIG_EXAMPLES_TIFF is not set +# CONFIG_EXAMPLES_TOUCHSCREEN is not set +# CONFIG_EXAMPLES_UDP is not set +# CONFIG_EXAMPLES_UIP is not set +# CONFIG_EXAMPLES_USBSERIAL is not set +# CONFIG_EXAMPLES_USBTERM is not set +# CONFIG_EXAMPLES_WATCHDOG is not set + +# +# Graphics Support +# +# CONFIG_TIFF is not set + +# +# Interpreters +# +# CONFIG_INTERPRETERS_FICL is not set +# CONFIG_INTERPRETERS_PCODE is not set + +# +# Network Utilities +# + +# +# Networking Utilities +# +# CONFIG_NETUTILS_CODECS is not set +# CONFIG_NETUTILS_DHCPD is not set +# CONFIG_NETUTILS_FTPC is not set +# CONFIG_NETUTILS_FTPD is not set +# CONFIG_NETUTILS_JSON is not set +# CONFIG_NETUTILS_SMTP is not set +# CONFIG_NETUTILS_TFTPC is not set +# CONFIG_NETUTILS_THTTPD is not set +# CONFIG_NETUTILS_UIPLIB is not set +# CONFIG_NETUTILS_WEBCLIENT is not set + +# +# FreeModBus +# +# CONFIG_MODBUS is not set + +# +# NSH Library +# +# CONFIG_NSH_LIBRARY is not set + +# +# NxWidgets/NxWM +# + +# +# Platform-specific Support +# +# CONFIG_PLATFORM_CONFIGDATA is not set + +# +# System Libraries and NSH Add-Ons +# + +# +# USB CDC/ACM Device Commands +# + +# +# USB Composite Device Commands +# + +# +# Custom Free Memory Command +# +# CONFIG_SYSTEM_FREE is not set + +# +# I2C tool +# + +# +# INI File Parser +# +# CONFIG_SYSTEM_INIFILE is not set + +# +# FLASH Program Installation +# +# CONFIG_SYSTEM_INSTALL is not set + +# +# FLASH Erase-all Command +# + +# +# NxPlayer media player library / command Line +# +# CONFIG_SYSTEM_NXPLAYER is not set + +# +# RAM test +# +# CONFIG_SYSTEM_RAMTEST is not set + +# +# readline() +# +# CONFIG_SYSTEM_READLINE is not set + +# +# Power Off +# +# CONFIG_SYSTEM_POWEROFF is not set + +# +# RAMTRON +# +# CONFIG_SYSTEM_RAMTRON is not set + +# +# SD Card +# +# CONFIG_SYSTEM_SDCARD is not set + +# +# Sysinfo +# +# CONFIG_SYSTEM_SYSINFO is not set + +# +# USB Monitor +# + +# +# EMACS-like Command Line Editor +# +# CONFIG_SYSTEM_CLE is not set + +# +# VI Work-Alike Editor +# +# CONFIG_SYSTEM_VI is not set + +# +# Stack Monitor +# + +# +# USB Mass Storage Device Commands +# + +# +# Zmodem Commands +# +# CONFIG_SYSTEM_ZMODEM is not set diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig index baa87ba022..f5a8fc6879 100644 --- a/drivers/serial/Kconfig +++ b/drivers/serial/Kconfig @@ -333,44 +333,99 @@ endif # config ARCH_HAVE_UART - bool + bool + default n + select MCU_SERIAL + config ARCH_HAVE_UART0 - bool + bool + default n + config ARCH_HAVE_UART1 - bool + bool + default n + select MCU_SERIAL + config ARCH_HAVE_UART2 - bool + bool + default n + select MCU_SERIAL + config ARCH_HAVE_UART3 - bool + bool + default n + select MCU_SERIAL + config ARCH_HAVE_UART4 - bool + bool + default n + select MCU_SERIAL + config ARCH_HAVE_UART5 - bool + bool + default n + select MCU_SERIAL + config ARCH_HAVE_UART6 - bool + bool + default n + select MCU_SERIAL + config ARCH_HAVE_UART7 - bool + bool + default n + select MCU_SERIAL + config ARCH_HAVE_UART8 - bool + bool + default n + select MCU_SERIAL + +config ARCH_HAVE_SCI0 + bool + default n + select MCU_SERIAL + +config ARCH_HAVE_SCI1 + bool + default n + select MCU_SERIAL config ARCH_HAVE_USART0 - bool + bool + default n + config ARCH_HAVE_USART1 - bool + bool + default n + config ARCH_HAVE_USART2 - bool + bool + default n + config ARCH_HAVE_USART3 - bool + bool + default n + config ARCH_HAVE_USART4 - bool + bool + default n + config ARCH_HAVE_USART5 - bool + bool + default n + config ARCH_HAVE_USART6 - bool + bool + default n + config ARCH_HAVE_USART7 - bool + bool + default n + config ARCH_HAVE_USART8 - bool + bool + default n # # USARTn configuration. Is the USART configured to behave like a UART? @@ -382,54 +437,59 @@ config USART0_ISUART bool "USART0 is a UART" default y depends on ARCH_HAVE_USART0 + select MCU_SERIAL config USART1_ISUART bool "USART1 is a UART" default y depends on ARCH_HAVE_USART1 + select MCU_SERIAL config USART2_ISUART bool "USART2 is a UART" default y depends on ARCH_HAVE_USART2 + select MCU_SERIAL config USART3_ISUART bool "USART3 is a UART" default y depends on ARCH_HAVE_USART3 + select MCU_SERIAL config USART4_ISUART bool "USART4 is a UART" default y depends on ARCH_HAVE_USART4 + select MCU_SERIAL config USART5_ISUART bool "USART5 is a UART" default y depends on ARCH_HAVE_USART5 + select MCU_SERIAL config USART6_ISUART bool "USART6 is a UART" default y depends on ARCH_HAVE_USART6 + select MCU_SERIAL config USART7_ISUART bool "USART7 is a UART" default y depends on ARCH_HAVE_USART7 + select MCU_SERIAL config USART8_ISUART bool "USART8 is a UART" default y depends on ARCH_HAVE_USART8 + select MCU_SERIAL config MCU_SERIAL bool - default y if ARCH_HAVE_UART || ARCH_HAVE_UART0 || USART0_ISUART || \ - ARCH_HAVE_UART1 || USART1_ISUART || ARCH_HAVE_UART2 || USART2_ISUART || \ - ARCH_HAVE_UART3 || USART3_ISUART || ARCH_HAVE_UART4 || USART4_ISUART || \ - ARCH_HAVE_UART5 || USART5_ISUART || ARCH_HAVE_UART6 || USART6_ISUART || \ - ARCH_HAVE_UART7 || USART7_ISUART || ARCH_HAVE_UART8 || USART8_ISUART + default n # # Standard serial driver configuration @@ -547,6 +607,14 @@ config USART8_SERIAL_CONSOLE bool "USART8" depends on USART8_ISUART +config SCI0_SERIAL_CONSOLE + bool "SCI0" + depends on ARCH_HAVE_SCI0 + +config SCI1_SERIAL_CONSOLE + bool "SCI1" + depends on ARCH_HAVE_SCI1 + config NO_SERIAL_CONSOLE bool "No serial console" @@ -1639,6 +1707,92 @@ config UART8_OFLOWCONTROL endmenu +menu "SCI0 Configuration" + depends on ARCH_HAVE_SCI0 + +config SCI0_RXBUFSIZE + int "SCI0 receive buffer size" + default 256 + ---help--- + Characters are buffered as they are received. This specifies + the size of the receive buffer. + +config SCI0_TXBUFSIZE + int "SCI0 transmit buffer size" + default 256 + ---help--- + Characters are buffered before being sent. This specifies + the size of the transmit buffer. + +config SCI0_BAUD + int "SCI0 BAUD rate" + default 115200 + ---help--- + The configured BAUD of the SCI. + +config SCI0_BITS + int "SCI0 character size" + default 8 + ---help--- + The number of bits. Must be either 7 or 8. + +config SCI0_PARITY + int "Parity setting" + default 0 + ---help--- + 0=no parity, 1=odd parity, 2=even parity + +config SCI0_2STOP + int "SCI0 use 2 stop bits" + default 0 + ---help--- + 1=Two stop bits + +endmenu # SCI0 Configuration + +menu "SCI1 Configuration" + depends on ARCH_HAVE_SCI1 + +config SCI1_RXBUFSIZE + int "SCI1 receive buffer size" + default 256 + ---help--- + Characters are buffered as they are received. This specifies + the size of the receive buffer. + +config SCI1_TXBUFSIZE + int "SCI1 transmit buffer size" + default 256 + ---help--- + Characters are buffered before being sent. This specifies + the size of the transmit buffer. + +config SCI1_BAUD + int "SCI1 BAUD rate" + default 115200 + ---help--- + The configured BAUD of the SCI. + +config SCI1_BITS + int "SCI1 character size" + default 8 + ---help--- + The number of bits. Must be either 7 or 8. + +config SCI1_PARITY + int "Parity setting" + default 0 + ---help--- + 0=no parity, 1=odd parity, 2=even parity + +config SCI1_2STOP + int "SCI1 use 2 stop bits" + default 0 + ---help--- + 1=Two stop bits + +endmenu # SCI1 Configuration + config SERIAL_IFLOWCONTROL bool default n