STM32H735xx HAL User Manual
|
Defines | |
#define | __HAL_OTFDEC_RESET_HANDLE_STATE(__HANDLE__) |
Reset OTFDEC handle state. | |
#define | __HAL_OTFDEC_ENABLE_IT(__HANDLE__, __INTERRUPT__) SET_BIT(((__HANDLE__)->Instance->IER), (__INTERRUPT__)) |
Enable OTFDEC peripheral interrupts combination. | |
#define | __HAL_OTFDEC_DISABLE_IT(__HANDLE__, __INTERRUPT__) CLEAR_BIT(((__HANDLE__)->Instance->IER), (__INTERRUPT__)) |
Disable OTFDEC peripheral interrupts combination. | |
#define | __HAL_OTFDEC_GET_FLAG(__HANDLE__, __FLAG__) (((__HANDLE__)->Instance->ISR & (__FLAG__)) == (__FLAG__)) |
Check whether the specified combination of OTFDEC interrupt flags is set or not. | |
#define | __HAL_OTFDEC_CLEAR_FLAG(__HANDLE__, __FLAG__) SET_BIT((__HANDLE__)->Instance->ICR, (__FLAG__)) |
Clear the specified combination of OTFDEC interrupt flags. |
#define __HAL_OTFDEC_CLEAR_FLAG | ( | __HANDLE__, | |
__FLAG__ | |||
) | SET_BIT((__HANDLE__)->Instance->ICR, (__FLAG__)) |
Clear the specified combination of OTFDEC interrupt flags.
__HANDLE__ | pointer to an OTFDEC_HandleTypeDef structure that contains the configuration information for OTFDEC module |
__FLAG__ | mask on combination of interrupts flags This parameter can be one of the following values:
|
None |
Definition at line 299 of file stm32h7xx_hal_otfdec.h.
#define __HAL_OTFDEC_DISABLE_IT | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) | CLEAR_BIT(((__HANDLE__)->Instance->IER), (__INTERRUPT__)) |
Disable OTFDEC peripheral interrupts combination.
__HANDLE__ | pointer to an OTFDEC_HandleTypeDef structure that contains the configuration information for OTFDEC module |
__INTERRUPT__ | mask on disabled interrupts This parameter can be one of the following values:
|
None |
Definition at line 267 of file stm32h7xx_hal_otfdec.h.
#define __HAL_OTFDEC_ENABLE_IT | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) | SET_BIT(((__HANDLE__)->Instance->IER), (__INTERRUPT__)) |
Enable OTFDEC peripheral interrupts combination.
__HANDLE__ | pointer to an OTFDEC_HandleTypeDef structure that contains the configuration information for OTFDEC module |
__INTERRUPT__ | mask on enabled interrupts This parameter can be one of the following values:
|
None |
Definition at line 250 of file stm32h7xx_hal_otfdec.h.
#define __HAL_OTFDEC_GET_FLAG | ( | __HANDLE__, | |
__FLAG__ | |||
) | (((__HANDLE__)->Instance->ISR & (__FLAG__)) == (__FLAG__)) |
Check whether the specified combination of OTFDEC interrupt flags is set or not.
__HANDLE__ | pointer to an OTFDEC_HandleTypeDef structure that contains the configuration information for OTFDEC module |
__FLAG__ | mask on combination of interrupts flags This parameter can be one of the following values:
|
The | state of __FLAG__ (TRUE or FALSE). |
Definition at line 283 of file stm32h7xx_hal_otfdec.h.
#define __HAL_OTFDEC_RESET_HANDLE_STATE | ( | __HANDLE__ | ) |
do{ \ (__HANDLE__)->State = HAL_OTFDEC_STATE_RESET; \ (__HANDLE__)->MspInitCallback = NULL; \ (__HANDLE__)->MspDeInitCallback = NULL; \ } while(0)
Reset OTFDEC handle state.
__HANDLE__ | pointer to an OTFDEC_HandleTypeDef structure that contains the configuration information for OTFDEC module |
None |
Definition at line 224 of file stm32h7xx_hal_otfdec.h.