summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/lpc17xx/Kconfig
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-03-05 18:57:51 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-03-05 18:57:51 +0000
commit7b06c73d1d766cd3376be29dccbd28a16e3f385b (patch)
tree20b00664065816849ca8f29e46281759085270ba /nuttx/arch/arm/src/lpc17xx/Kconfig
parenteb573ac290c8f1a6bcb0816c8552ca88278cda11 (diff)
downloadpx4-nuttx-7b06c73d1d766cd3376be29dccbd28a16e3f385b.tar.gz
px4-nuttx-7b06c73d1d766cd3376be29dccbd28a16e3f385b.tar.bz2
px4-nuttx-7b06c73d1d766cd3376be29dccbd28a16e3f385b.zip
Move work queue logic from sched/ to libc/wqueue. It is not core logic and will be extended to support user-space work queues
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5711 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch/arm/src/lpc17xx/Kconfig')
-rw-r--r--nuttx/arch/arm/src/lpc17xx/Kconfig41
1 files changed, 39 insertions, 2 deletions
diff --git a/nuttx/arch/arm/src/lpc17xx/Kconfig b/nuttx/arch/arm/src/lpc17xx/Kconfig
index 81ca87f04..797711fdc 100644
--- a/nuttx/arch/arm/src/lpc17xx/Kconfig
+++ b/nuttx/arch/arm/src/lpc17xx/Kconfig
@@ -150,6 +150,11 @@ config LPC17_ETHERNET
select ARCH_HAVE_PHY
default n
+config LPC17_LCD
+ bool "LCD controller"
+ default n
+ depends on ARCH_FAMILY_LPC177X || ARCH_FAMILY_LPC178X
+
config LPC17_USBHOST
bool "USB host"
select USBHOST
@@ -190,6 +195,11 @@ config LPC17_UART3
select ARCH_HAVE_UART3
default n
+config LPC17_UART4
+ bool "UART4"
+ select ARCH_HAVE_UART4
+ default n
+
config LPC17_CAN1
bool "CAN1"
select ARCH_HAVE_UART4
@@ -202,6 +212,7 @@ config LPC17_CAN2
config LPC17_SPI
bool "SPI"
default n
+ depends on ARCH_FAMILY_LPC175X || ARCH_FAMILY_LPC176X
config LPC17_SSP0
bool "SSP0"
@@ -211,6 +222,11 @@ config LPC17_SSP1
bool "SSP1"
default n
+config LPC17_SSP2
+ bool "SSP1"
+ default n
+ depends on ARCH_FAMILY_LPC177X || ARCH_FAMILY_LPC178X
+
config LPC17_SPIFI
bool "SPIFI Interface"
depends on ARCH_HAVE_SPIFI
@@ -252,13 +268,19 @@ config LPC17_RIT
bool "RIT"
default n
-config LPC17_PWM
- bool "PWM"
+config LPC17_PWM0
+ bool "PWM0"
default n
+config LPC17_PWM1
+ bool "PWM1"
+ default n
+ depends on ARCH_FAMILY_LPC177X || ARCH_FAMILY_LPC178X
+
config LPC17_MCPWM
bool "MCPWM"
default n
+ depends on ARCH_FAMILY_LPC175X || ARCH_FAMILY_LPC176X
config LPC17_QEI
bool "QEI"
@@ -268,6 +290,11 @@ config LPC17_RTC
bool "RTC"
default n
+config LPC17_RTCEV
+ bool "RTC event monitor"
+ default n
+ depends on LPC17_RTC
+
config LPC17_WDT
bool "WDT"
default n
@@ -284,10 +311,20 @@ config LPC17_GPDMA
bool "GPDMA"
default n
+config LPC17_CRC
+ bool "CRC engine"
+ default n
+ depends on ARCH_FAMILY_LPC177X || ARCH_FAMILY_LPC178X
+
config LPC17_FLASH
bool "FLASH"
default n
+config LPC17_EEPROM
+ bool "EEPROM"
+ default n
+ depends on ARCH_FAMILY_LPC177X || ARCH_FAMILY_LPC178X
+
endmenu
menu "Serial driver options"