summaryrefslogtreecommitdiffstats
path: root/nuttx/arch/arm/src/lpc43xx/Kconfig
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-09-05 17:20:19 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-09-05 17:20:19 +0000
commit9d88d667da8ecb1167828c22a50ef13d0b010870 (patch)
treed66089490b6d6a874d87f9a401e857f4872be187 /nuttx/arch/arm/src/lpc43xx/Kconfig
parente7cefa68f4ba5d436aee4c52f37d834c344a9e42 (diff)
Add Kconfig settings for the LPC17xx
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@5094 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/arch/arm/src/lpc43xx/Kconfig')
-rw-r--r--nuttx/arch/arm/src/lpc43xx/Kconfig44
1 files changed, 1 insertions, 43 deletions
diff --git a/nuttx/arch/arm/src/lpc43xx/Kconfig b/nuttx/arch/arm/src/lpc43xx/Kconfig
index 351b940aa1..3010046efa 100644
--- a/nuttx/arch/arm/src/lpc43xx/Kconfig
+++ b/nuttx/arch/arm/src/lpc43xx/Kconfig
@@ -261,6 +261,7 @@ config LPC43_USART0
config LPC43_UART1
bool "UART1"
+ select ARCH_HAS_UART1
default n
config LPC43_USART2
@@ -292,49 +293,6 @@ config LPC43_WWDT
endmenu
-menu "UART1 Configuration"
- depends on LPC43_UART1
-
-config UART1_RXBUFSIZE
- int "UART1 Rx buffer size"
- default 256
- ---help---
- Characters are buffered as received. This specific the size of the receive
- buffer.
-
-config UART1_TXBUFSIZE
- int "UART1 Tx buffer size"
- default 256
- ---help---
- Characters are buffered before being sent. This specific the size of the
- transmit buffer
-
-config UART1_BAUD
- int "UART1 BAUD"
- default 11520
- ---help---
- The configured BAUD of the UART
-
-config UART1_BITS
- int "UART1 number of bits"
- default 8
- ---help---
- The number of bits. Must be either 7 or 8.
-
-config UART1_PARITY
- int "UART1 parity"
- default 0
- ---help---
- 0=no parity, 1=odd parity, 2=even parity
-
-config UART1_2STOP
- int "UART1 two stop bits"
- default 0
- ---help---
- 0=1 stop bit, 1=Two stop bits. Default: 1 stop bit
-
-endmenu
-
config SERIAL_TERMIOS
bool "Serial driver TERMIOS supported"
depends on LPC43_USART0 || LPC43_UART1 || LPC43_USART2 || LPC43_USART3