|
STM32H735xx HAL User Manual
|
Defines | |
| #define | __HAL_DMA2D_RESET_HANDLE_STATE(__HANDLE__) |
| Reset DMA2D handle state. | |
| #define | __HAL_DMA2D_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR |= DMA2D_CR_START) |
| Enable the DMA2D. | |
| #define | __HAL_DMA2D_GET_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->ISR & (__FLAG__)) |
| Get the DMA2D pending flags. | |
| #define | __HAL_DMA2D_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->IFCR = (__FLAG__)) |
| Clear the DMA2D pending flags. | |
| #define | __HAL_DMA2D_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR |= (__INTERRUPT__)) |
| Enable the specified DMA2D interrupts. | |
| #define | __HAL_DMA2D_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR &= ~(__INTERRUPT__)) |
| Disable the specified DMA2D interrupts. | |
| #define | __HAL_DMA2D_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR & (__INTERRUPT__)) |
| Check whether the specified DMA2D interrupt source is enabled or not. | |
| #define __HAL_DMA2D_CLEAR_FLAG | ( | __HANDLE__, | |
| __FLAG__ | |||
| ) | ((__HANDLE__)->Instance->IFCR = (__FLAG__)) |
Clear the DMA2D pending flags.
| __HANDLE__ | DMA2D handle |
| __FLAG__ | specifies the flag to clear. This parameter can be any combination of the following values:
|
| None |
Definition at line 420 of file stm32h7xx_hal_dma2d.h.
Referenced by HAL_DMA2D_IRQHandler(), and HAL_DMA2D_PollForTransfer().
| #define __HAL_DMA2D_DISABLE_IT | ( | __HANDLE__, | |
| __INTERRUPT__ | |||
| ) | ((__HANDLE__)->Instance->CR &= ~(__INTERRUPT__)) |
Disable the specified DMA2D interrupts.
| __HANDLE__ | DMA2D handle |
| __INTERRUPT__ | specifies the DMA2D interrupt sources to be disabled. This parameter can be any combination of the following values:
|
| None |
Definition at line 450 of file stm32h7xx_hal_dma2d.h.
Referenced by HAL_DMA2D_Abort(), HAL_DMA2D_CLUTLoading_Abort(), and HAL_DMA2D_IRQHandler().
| #define __HAL_DMA2D_ENABLE | ( | __HANDLE__ | ) | ((__HANDLE__)->Instance->CR |= DMA2D_CR_START) |
Enable the DMA2D.
| __HANDLE__ | DMA2D handle |
| None. |
Definition at line 388 of file stm32h7xx_hal_dma2d.h.
Referenced by HAL_DMA2D_BlendingStart(), HAL_DMA2D_BlendingStart_IT(), HAL_DMA2D_Start(), and HAL_DMA2D_Start_IT().
| #define __HAL_DMA2D_ENABLE_IT | ( | __HANDLE__, | |
| __INTERRUPT__ | |||
| ) | ((__HANDLE__)->Instance->CR |= (__INTERRUPT__)) |
Enable the specified DMA2D interrupts.
| __HANDLE__ | DMA2D handle |
| __INTERRUPT__ | specifies the DMA2D interrupt sources to be enabled. This parameter can be any combination of the following values:
|
| None |
Definition at line 435 of file stm32h7xx_hal_dma2d.h.
Referenced by HAL_DMA2D_BlendingStart_IT(), HAL_DMA2D_CLUTLoad_IT(), HAL_DMA2D_CLUTStartLoad_IT(), HAL_DMA2D_ProgramLineEvent(), and HAL_DMA2D_Start_IT().
| #define __HAL_DMA2D_GET_FLAG | ( | __HANDLE__, | |
| __FLAG__ | |||
| ) | ((__HANDLE__)->Instance->ISR & (__FLAG__)) |
Get the DMA2D pending flags.
| __HANDLE__ | DMA2D handle |
| __FLAG__ | flag to check. This parameter can be any combination of the following values:
|
| The | state of FLAG. |
Definition at line 405 of file stm32h7xx_hal_dma2d.h.
Referenced by HAL_DMA2D_PollForTransfer().
| #define __HAL_DMA2D_GET_IT_SOURCE | ( | __HANDLE__, | |
| __INTERRUPT__ | |||
| ) | ((__HANDLE__)->Instance->CR & (__INTERRUPT__)) |
Check whether the specified DMA2D interrupt source is enabled or not.
| __HANDLE__ | DMA2D handle |
| __INTERRUPT__ | specifies the DMA2D interrupt source to check. This parameter can be one of the following values:
|
| The | state of INTERRUPT source. |
Definition at line 465 of file stm32h7xx_hal_dma2d.h.
| #define __HAL_DMA2D_RESET_HANDLE_STATE | ( | __HANDLE__ | ) |
do{ \ (__HANDLE__)->State = HAL_DMA2D_STATE_RESET;\ (__HANDLE__)->MspInitCallback = NULL; \ (__HANDLE__)->MspDeInitCallback = NULL; \ }while(0)
Reset DMA2D handle state.
| __HANDLE__ | specifies the DMA2D handle. |
| None |
Definition at line 373 of file stm32h7xx_hal_dma2d.h.
1.7.6.1