summaryrefslogtreecommitdiff
path: root/nuttx/drivers/serial
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-04-14 13:31:14 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-04-14 13:31:14 +0000
commitc9b5df22eb6f361ca4505cfc44058c5fd2970d2f (patch)
tree50b3cbe2b4c9f095885f6bfa4454ff0ac45d8768 /nuttx/drivers/serial
parent2d21e7c1871fba26eded74e19451c75a53252010 (diff)
downloadpx4-nuttx-c9b5df22eb6f361ca4505cfc44058c5fd2970d2f.tar.gz
px4-nuttx-c9b5df22eb6f361ca4505cfc44058c5fd2970d2f.tar.bz2
px4-nuttx-c9b5df22eb6f361ca4505cfc44058c5fd2970d2f.zip
Kconfig updates
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4606 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/drivers/serial')
-rw-r--r--nuttx/drivers/serial/Kconfig21
1 files changed, 3 insertions, 18 deletions
diff --git a/nuttx/drivers/serial/Kconfig b/nuttx/drivers/serial/Kconfig
index 3d4c7d3d6..b8867bd3f 100644
--- a/nuttx/drivers/serial/Kconfig
+++ b/nuttx/drivers/serial/Kconfig
@@ -5,7 +5,7 @@
config LOWLEVEL_CONSOLE
bool "Low-level console support"
- default y
+ default n
depends on ARCH_LOWPUTC
config 16550_UART
@@ -13,15 +13,11 @@ config 16550_UART
default n
if 16550_UART
-menu "16550 UARTs"
-
config 16550_UART0
bool "16550 UART0"
default n
if 16550_UART0
-menu "UART0 configuration"
-
config 16550_UART0_BASE
hex "16550 UART0 base address"
@@ -65,7 +61,6 @@ config 16550_UART0_TXBUFSIZE
---help---
16550 UART0 Tx buffer size. Default: 256
-endmenu
endif
config 16550_UART1
@@ -73,8 +68,6 @@ config 16550_UART1
default n
if 16550_UART1
-menu "UART1 configuration"
-
config 16550_UART1_BASE
hex "16550 UART1 base address"
@@ -118,7 +111,6 @@ config 16550_UART1_TXBUFSIZE
---help---
16550 UART1 Tx buffer size. Default: 256
-endmenu
endif
config 16550_UART2
@@ -126,8 +118,6 @@ config 16550_UART2
default n
if 16550_UART2
-menu "UART2 configuration"
-
config 16550_UART2_BASE
hex "16550 UART2 base address"
@@ -171,7 +161,6 @@ config 16550_UART2_TXBUFSIZE
---help---
16550 UART2 Tx buffer size. Default: 256
-endmenu
endif
config 16550_UART3
@@ -179,8 +168,6 @@ config 16550_UART3
default n
if 16550_UART3
-menu "UART3 configuration"
-
config 16550_UART3_BASE
hex "16550 UART3 base address"
@@ -224,7 +211,6 @@ config 16550_UART3_TXBUFSIZE
---help---
16550 UART3 Tx buffer size. Default: 256
-endmenu
endif
choice
@@ -279,16 +265,15 @@ config 16550_ADDRWIDTH
---help---
The bit width of registers. Options are 8, 16, or 32. Default: 8
-endmenu
endif
config STANDARD_SERIAL
- bool ""
+ bool "Standard serial"
default y if !LOWLEVEL_CONSOLE && !16550_UART
if STANDARD_SERIAL
config CONFIG_SERIAL_NPOLLWAITERS
- int "Low-level console support"
+ int "Number of poll threads"
default 2
depends on !DISABLE_POLL
---help---