__HAL_QSPI_DISABLE_IT macro
Disable the specified QSPI interrupt.
Syntax
#define __HAL_QSPI_DISABLE_IT(__HANDLE__, __INTERRUPT__) CLEAR_BIT((__HANDLE__)->Instance->CR, (__INTERRUPT__)) Arguments
__HANDLE__
specifies the QSPI Handle.
__INTERRUPT__
specifies the QSPI interrupt source to disable. This parameter can be one of the following values: @arg QSPI_IT_TO: QSPI Timeout interrupt @arg QSPI_IT_SM: QSPI Status match interrupt @arg QSPI_IT_FT: QSPI FIFO threshold interrupt @arg QSPI_IT_TC: QSPI Transfer complete interrupt @arg QSPI_IT_TE: QSPI Transfer error interrupt
Return value
None