summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/stm32
diff options
context:
space:
mode:
authorpx4dev <px4@purgatory.org>2013-09-01 13:21:34 -0700
committerpx4dev <px4@purgatory.org>2013-09-01 13:21:34 -0700
commit83f0ace158abf8eda7b8561d8fc9e947f1ba3e34 (patch)
tree9958d44be6971bdc9d874d0534a57448b658f687 /nuttx/arch/arm/src/stm32
parentaab5581a619867df1af40924c9e99633707bf730 (diff)
downloadpx4-nuttx-83f0ace158abf8eda7b8561d8fc9e947f1ba3e34.tar.gz
px4-nuttx-83f0ace158abf8eda7b8561d8fc9e947f1ba3e34.tar.bz2
px4-nuttx-83f0ace158abf8eda7b8561d8fc9e947f1ba3e34.zip
Fix the Kconfig configuration for the STM32 SDIO DMA priority option.
Diffstat (limited to 'nuttx/arch/arm/src/stm32')
-rw-r--r--nuttx/arch/arm/src/stm32/Kconfig8
1 files changed, 8 insertions, 0 deletions
diff --git a/nuttx/arch/arm/src/stm32/Kconfig b/nuttx/arch/arm/src/stm32/Kconfig
index 9cd44725f..2d61d5827 100644
--- a/nuttx/arch/arm/src/stm32/Kconfig
+++ b/nuttx/arch/arm/src/stm32/Kconfig
@@ -2519,9 +2519,17 @@ config SDIO_PRI
config SDIO_DMAPRIO
hex "SDIO DMA priority"
default 0x00001000
+ depends on STM32_STM32F10XX
---help---
Select SDIO DMA prority. Options: 0x00000000 low, 0x00001000 medium,
0x00002000 high, 0x00003000 very high. Default: medium.
+config SDIO_DMAPRIO
+ hex "SDIO DMA priority"
+ default 0x00010000
+ depends on !STM32_STM32F10XX
+ ---help---
+ Select SDIO DMA prority. Options: 0x00000000 low, 0x00010000 medium,
+ 0x00020000 high, 0x00030000 very high. Default: medium.
config SDIO_WIDTH_D1_ONLY
bool "Use D1 only"