__HAL_SAI_ENABLE_IT macro
Enable or disable the specified SAI interrupts.
Syntax
#define __HAL_SAI_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->IMR |= (__INTERRUPT__)) Arguments
__HANDLE__
specifies the SAI Handle.
__INTERRUPT__
specifies the interrupt source to enable or disable. This parameter can be one of the following values: @arg SAI_IT_OVRUDR: Overrun underrun interrupt enable @arg SAI_IT_MUTEDET: Mute detection interrupt enable @arg SAI_IT_WCKCFG: Wrong Clock Configuration interrupt enable @arg SAI_IT_FREQ: FIFO request interrupt enable @arg SAI_IT_CNRDY: Codec not ready interrupt enable @arg SAI_IT_AFSDET: Anticipated frame synchronization detection interrupt enable @arg SAI_IT_LFSDET: Late frame synchronization detection interrupt enable
Return value
None