![]() |
STM32F769IDiscovery
1.00
uDANTE Audio Networking with STM32F7 DISCO board
|
Macros | |
#define | __HAL_DMA2D_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_DMA2D_STATE_RESET) |
Reset DMA2D handle state. More... | |
#define | __HAL_DMA2D_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR |= DMA2D_CR_START) |
Enable the DMA2D. More... | |
#define | __HAL_DMA2D_GET_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->ISR & (__FLAG__)) |
Get the DMA2D pending flags. More... | |
#define | __HAL_DMA2D_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->IFCR = (__FLAG__)) |
Clear the DMA2D pending flags. More... | |
#define | __HAL_DMA2D_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR |= (__INTERRUPT__)) |
Enable the specified DMA2D interrupts. More... | |
#define | __HAL_DMA2D_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR &= ~(__INTERRUPT__)) |
Disable the specified DMA2D interrupts. More... | |
#define | __HAL_DMA2D_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR & (__INTERRUPT__)) |
Check whether the specified DMA2D interrupt source is enabled or not. More... | |
#define __HAL_DMA2D_CLEAR_FLAG | ( | __HANDLE__, | |
__FLAG__ | |||
) | ((__HANDLE__)->Instance->IFCR = (__FLAG__)) |
Clear the DMA2D pending flags.
<strong>HANDLE</strong> | DMA2D handle |
<strong>FLAG</strong> | specifies the flag to clear. This parameter can be any combination of the following values:
|
None |
Definition at line 387 of file stm32f7xx_hal_dma2d.h.
#define __HAL_DMA2D_DISABLE_IT | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) | ((__HANDLE__)->Instance->CR &= ~(__INTERRUPT__)) |
Disable the specified DMA2D interrupts.
<strong>HANDLE</strong> | DMA2D handle |
<strong>INTERRUPT</strong> | specifies the DMA2D interrupt sources to be disabled. This parameter can be any combination of the following values:
|
None |
Definition at line 417 of file stm32f7xx_hal_dma2d.h.
#define __HAL_DMA2D_ENABLE | ( | __HANDLE__ | ) | ((__HANDLE__)->Instance->CR |= DMA2D_CR_START) |
Enable the DMA2D.
<strong>HANDLE</strong> | DMA2D handle |
None. |
Definition at line 355 of file stm32f7xx_hal_dma2d.h.
#define __HAL_DMA2D_ENABLE_IT | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) | ((__HANDLE__)->Instance->CR |= (__INTERRUPT__)) |
Enable the specified DMA2D interrupts.
<strong>HANDLE</strong> | DMA2D handle |
<strong>INTERRUPT</strong> | specifies the DMA2D interrupt sources to be enabled. This parameter can be any combination of the following values:
|
None |
Definition at line 402 of file stm32f7xx_hal_dma2d.h.
#define __HAL_DMA2D_GET_FLAG | ( | __HANDLE__, | |
__FLAG__ | |||
) | ((__HANDLE__)->Instance->ISR & (__FLAG__)) |
Get the DMA2D pending flags.
<strong>HANDLE</strong> | DMA2D handle |
<strong>FLAG</strong> | flag to check. This parameter can be any combination of the following values:
|
The | state of FLAG. |
Definition at line 372 of file stm32f7xx_hal_dma2d.h.
#define __HAL_DMA2D_GET_IT_SOURCE | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) | ((__HANDLE__)->Instance->CR & (__INTERRUPT__)) |
Check whether the specified DMA2D interrupt source is enabled or not.
<strong>HANDLE</strong> | DMA2D handle |
<strong>INTERRUPT</strong> | specifies the DMA2D interrupt source to check. This parameter can be one of the following values:
|
The | state of INTERRUPT source. |
Definition at line 432 of file stm32f7xx_hal_dma2d.h.
#define __HAL_DMA2D_RESET_HANDLE_STATE | ( | __HANDLE__ | ) | ((__HANDLE__)->State = HAL_DMA2D_STATE_RESET) |
Reset DMA2D handle state.
<strong>HANDLE</strong> | specifies the DMA2D handle. |
None |
Definition at line 348 of file stm32f7xx_hal_dma2d.h.