summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/lpc43xx/Kconfig
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-09-05 17:20:19 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-09-05 17:20:19 +0000
commit291dd23da13557097ec86d3899a16c8548d2ebd2 (patch)
treed66089490b6d6a874d87f9a401e857f4872be187 /nuttx/arch/arm/src/lpc43xx/Kconfig
parent58b3f22d812ecc73e8658679638b4ef772dd9210 (diff)
downloadpx4-nuttx-291dd23da13557097ec86d3899a16c8548d2ebd2.tar.gz
px4-nuttx-291dd23da13557097ec86d3899a16c8548d2ebd2.tar.bz2
px4-nuttx-291dd23da13557097ec86d3899a16c8548d2ebd2.zip
Add Kconfig settings for the LPC17xx
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5094 42af7a65-404d-4744-a932-0658087f49c3
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 351b940aa..3010046ef 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