HAL
__HAL_CRYP_GET_IT is only used within HAL.
 
Symbols
loading...
Files
loading...

__HAL_CRYP_GET_IT macro

Check whether the specified CRYP interrupt is set or not.

Syntax

#define __HAL_CRYP_GET_IT(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->MISR\

Arguments

__HANDLE__

specifies the CRYP handle.

__INTERRUPT__

specifies the interrupt to check. This parameter can be one of the following values for TinyAES: @arg CRYP_IT_WRERR Write Error @arg CRYP_IT_RDERR Read Error @arg CRYP_IT_CCF Computation Complete This parameter can be one of the following values for CRYP: @arg CRYP_IT_INI: Input FIFO service masked interrupt status @arg CRYP_IT_OUTI: Output FIFO service masked interrupt status

Return value

The state of __INTERRUPT__ (TRUE or FALSE).

References

LocationText
stm32f4xx_hal_cryp.h:451
#define __HAL_CRYP_GET_IT(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->MISR\
stm32f4xx_hal_cryp.c:2311
if (__HAL_CRYP_GET_IT(hcryp, CRYP_IT_INI) != 0x0U)
stm32f4xx_hal_cryp.c:2336
if (__HAL_CRYP_GET_IT(hcryp, CRYP_IT_OUTI) != 0x0U)