STM32 DMA priority corrections from Mike Smith

This commit is contained in:
Gregory Nutt 2013-10-18 07:37:24 -06:00
parent 2b70abad0d
commit 973d11f625
2 changed files with 7 additions and 3 deletions

View File

@ -5793,4 +5793,6 @@
(2013-10-17).
* arch/arm/src/stm32/chip/stm32f40xxx_dma.h: Typo fixes for UART7 and
UART8 DMA configs. From Mike Smit (2013-10-18).
* arch/arm/src/stm32/Kconfig: DMA priority corrections from Mike Smith
(2013-10-18).

View File

@ -2630,10 +2630,11 @@ config SDIO_PRI
config SDIO_DMAPRIO
hex "SDIO DMA priority"
default 0x00001000
default 0x00010000
depends on !STM32_STM32F10XX
---help---
Select SDIO DMA prority. Options: 0x00000000 low, 0x00001000 medium,
0x00002000 high, 0x00003000 very high. Default: medium.
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"
@ -2943,3 +2944,4 @@ config CAN2_BAUD
CAN2 BAUD rate. Required if STM32_CAN2 is defined.
endmenu