summaryrefslogtreecommitdiff
path: root/nuttx/arch
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-04-23 13:59:31 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-04-23 13:59:31 +0000
commit68bc7cefbd11c4dbeca86fb64fac3466dd4f5b69 (patch)
treefd1605d23bc93e70f2d8bd7fa5541bec9d33cd2d /nuttx/arch
parentcc17fe8980154e5af111651cce271798b4f8482b (diff)
downloadpx4-nuttx-68bc7cefbd11c4dbeca86fb64fac3466dd4f5b69.tar.gz
px4-nuttx-68bc7cefbd11c4dbeca86fb64fac3466dd4f5b69.tar.bz2
px4-nuttx-68bc7cefbd11c4dbeca86fb64fac3466dd4f5b69.zip
Fix atexit() function being called twice
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4644 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch')
-rw-r--r--nuttx/arch/arm/src/stm32/Kconfig42
1 files changed, 42 insertions, 0 deletions
diff --git a/nuttx/arch/arm/src/stm32/Kconfig b/nuttx/arch/arm/src/stm32/Kconfig
index ae92d8cfb..2dbc4b468 100644
--- a/nuttx/arch/arm/src/stm32/Kconfig
+++ b/nuttx/arch/arm/src/stm32/Kconfig
@@ -1467,6 +1467,13 @@ config USART1_2STOP
---help---
Two stop bits
+config USART1_RXDMA
+ bool "USART1 Rx DMA"
+ default n
+ depends on STM32_STM32F40XX && ARCH_DMA && STM32_DMA2
+ ---help---
+ In high data rate usage, Rx DMA may eliminate Rx overrun errors
+
endmenu
menu "USART2 Configuration"
@@ -1516,6 +1523,13 @@ config USART2_2STOP
---help---
Two stop bits
+config USART2_RXDMA
+ bool "USART2 Rx DMA"
+ default n
+ depends on STM32_STM32F40XX && ARCH_DMA && STM32_DMA1
+ ---help---
+ In high data rate usage, Rx DMA may eliminate Rx overrun errors
+
endmenu
menu "USART3 Configuration"
@@ -1565,6 +1579,13 @@ config USART3_2STOP
---help---
Two stop bits
+config USART3_RXDMA
+ bool "USART3 Rx DMA"
+ default n
+ depends on STM32_STM32F40XX && ARCH_DMA && STM32_DMA1
+ ---help---
+ In high data rate usage, Rx DMA may eliminate Rx overrun errors
+
endmenu
menu "UART4 Configuration"
@@ -1614,6 +1635,13 @@ config USART4_2STOP
---help---
Two stop bits
+config USART4_RXDMA
+ bool "USART4 Rx DMA"
+ default n
+ depends on STM32_STM32F40XX && ARCH_DMA && STM32_DMA1
+ ---help---
+ In high data rate usage, Rx DMA may eliminate Rx overrun errors
+
endmenu
menu "UART5 Configuration"
@@ -1663,6 +1691,13 @@ config USART5_2STOP
---help---
Two stop bits
+config USART5_RXDMA
+ bool "USART5 Rx DMA"
+ default n
+ depends on STM32_STM32F40XX && ARCH_DMA && STM32_DMA1
+ ---help---
+ In high data rate usage, Rx DMA may eliminate Rx overrun errors
+
endmenu
menu "USART6 Configuration"
@@ -1712,6 +1747,13 @@ config USART6_2STOP
---help---
Two stop bits
+config USART6_RXDMA
+ bool "USART6 Rx DMA"
+ default n
+ depends on STM32_STM32F40XX && ARCH_DMA && STM32_DMA2
+ ---help---
+ In high data rate usage, Rx DMA may eliminate Rx overrun errors
+
endmenu
menu "SPI Configuration"