STM32H735xx HAL User Manual
Defines
OTFDEC Exported Macros
OTFDEC

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 Documentation

#define __HAL_OTFDEC_CLEAR_FLAG (   __HANDLE__,
  __FLAG__ 
)    SET_BIT((__HANDLE__)->Instance->ICR, (__FLAG__))

Clear the specified combination of OTFDEC interrupt flags.

Parameters:
__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:
Return 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.

Parameters:
__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:
Return 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.

Parameters:
__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:
Return 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.

Parameters:
__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:
Return values:
Thestate of __FLAG__ (TRUE or FALSE).

Definition at line 283 of file stm32h7xx_hal_otfdec.h.

#define __HAL_OTFDEC_RESET_HANDLE_STATE (   __HANDLE__)
Value:
do{                                                                          \
    (__HANDLE__)->State = HAL_OTFDEC_STATE_RESET;                              \
    (__HANDLE__)->MspInitCallback = NULL;                                      \
    (__HANDLE__)->MspDeInitCallback = NULL;                                    \
  } while(0)

Reset OTFDEC handle state.

Parameters:
__HANDLE__pointer to an OTFDEC_HandleTypeDef structure that contains the configuration information for OTFDEC module
Return values:
None

Definition at line 224 of file stm32h7xx_hal_otfdec.h.