STM32F103xB HAL User Manual
|
Defines | |
#define | IS_DMA_DIRECTION(DIRECTION) |
#define | IS_DMA_BUFFER_SIZE(SIZE) (((SIZE) >= 0x1U) && ((SIZE) < 0x10000U)) |
#define | IS_DMA_PERIPHERAL_INC_STATE(STATE) |
#define | IS_DMA_MEMORY_INC_STATE(STATE) |
#define | IS_DMA_PERIPHERAL_DATA_SIZE(SIZE) |
#define | IS_DMA_MEMORY_DATA_SIZE(SIZE) |
#define | IS_DMA_MODE(MODE) |
#define | IS_DMA_PRIORITY(PRIORITY) |
#define IS_DMA_BUFFER_SIZE | ( | SIZE | ) | (((SIZE) >= 0x1U) && ((SIZE) < 0x10000U)) |
Definition at line 413 of file stm32f1xx_hal_dma.h.
Referenced by HAL_DMA_Start(), and HAL_DMA_Start_IT().
#define IS_DMA_DIRECTION | ( | DIRECTION | ) |
(((DIRECTION) == DMA_PERIPH_TO_MEMORY ) || \ ((DIRECTION) == DMA_MEMORY_TO_PERIPH) || \ ((DIRECTION) == DMA_MEMORY_TO_MEMORY))
Definition at line 409 of file stm32f1xx_hal_dma.h.
Referenced by HAL_DMA_Init().
#define IS_DMA_MEMORY_DATA_SIZE | ( | SIZE | ) |
(((SIZE) == DMA_MDATAALIGN_BYTE) || \ ((SIZE) == DMA_MDATAALIGN_HALFWORD) || \ ((SIZE) == DMA_MDATAALIGN_WORD ))
Definition at line 425 of file stm32f1xx_hal_dma.h.
Referenced by HAL_DMA_Init().
#define IS_DMA_MEMORY_INC_STATE | ( | STATE | ) |
(((STATE) == DMA_MINC_ENABLE) || \ ((STATE) == DMA_MINC_DISABLE))
Definition at line 418 of file stm32f1xx_hal_dma.h.
Referenced by HAL_DMA_Init().
#define IS_DMA_MODE | ( | MODE | ) |
(((MODE) == DMA_NORMAL ) || \ ((MODE) == DMA_CIRCULAR))
Definition at line 429 of file stm32f1xx_hal_dma.h.
Referenced by HAL_DMA_Init().
#define IS_DMA_PERIPHERAL_DATA_SIZE | ( | SIZE | ) |
(((SIZE) == DMA_PDATAALIGN_BYTE) || \ ((SIZE) == DMA_PDATAALIGN_HALFWORD) || \ ((SIZE) == DMA_PDATAALIGN_WORD))
Definition at line 421 of file stm32f1xx_hal_dma.h.
Referenced by HAL_DMA_Init().
#define IS_DMA_PERIPHERAL_INC_STATE | ( | STATE | ) |
(((STATE) == DMA_PINC_ENABLE) || \ ((STATE) == DMA_PINC_DISABLE))
Definition at line 415 of file stm32f1xx_hal_dma.h.
Referenced by HAL_DMA_Init().
#define IS_DMA_PRIORITY | ( | PRIORITY | ) |
(((PRIORITY) == DMA_PRIORITY_LOW ) || \ ((PRIORITY) == DMA_PRIORITY_MEDIUM) || \ ((PRIORITY) == DMA_PRIORITY_HIGH) || \ ((PRIORITY) == DMA_PRIORITY_VERY_HIGH))
Definition at line 432 of file stm32f1xx_hal_dma.h.
Referenced by HAL_DMA_Init().