Macros | |
| #define | __HAL_HMAC_DMA_START_LAST_TRF(__HANDLE__) SET_BITS((__HANDLE__)->p_instance->CTRL, (HMAC_CTRL_LST_TX | HMAC_CTRL_DMA_START)) |
| Start DMA Last block transfer. More... | |
| #define | __HAL_HMAC_CLEAR_FLAG_IT(__HANDLE__, __FLAG__) SET_BITS((__HANDLE__)->p_instance->INT, (__FLAG__)) |
| Clear the specified HMAC interrupt flag. More... | |
| #define | __HAL_HMAC_GET_FLAG(__HANDLE__, __FLAG__) ((READ_BITS((__HANDLE__)->p_instance->STAT, (__FLAG__)) != 0U) ? SET : RESET) |
| Check whether the specified HMAC flag is set or not. More... | |
| #define __HAL_HMAC_CLEAR_FLAG_IT | ( | __HANDLE__, | |
| __FLAG__ | |||
| ) | SET_BITS((__HANDLE__)->p_instance->INT, (__FLAG__)) |
Clear the specified HMAC interrupt flag.
| __HANDLE__ | Specifies the HMAC interrupt Handle. |
| __FLAG__ | Specifies the flag to clear. This parameter can be one of the following values:
|
| None |
Definition at line 278 of file hal_hmac.h.
| #define __HAL_HMAC_DMA_START_LAST_TRF | ( | __HANDLE__ | ) | SET_BITS((__HANDLE__)->p_instance->CTRL, (HMAC_CTRL_LST_TX | HMAC_CTRL_DMA_START)) |
Start DMA Last block transfer.
| __HANDLE__ | Specifies the HMAC interrupt Handle. |
| None |
Definition at line 269 of file hal_hmac.h.
| #define __HAL_HMAC_GET_FLAG | ( | __HANDLE__, | |
| __FLAG__ | |||
| ) | ((READ_BITS((__HANDLE__)->p_instance->STAT, (__FLAG__)) != 0U) ? SET : RESET) |
Check whether the specified HMAC flag is set or not.
| __HANDLE__ | Specifies the HMAC Handle. |
| __FLAG__ | Specifies the flag to check. This parameter can be one of the following values:
|
| The | new state of __FLAG__ (TRUE or FALSE). |
Definition at line 291 of file hal_hmac.h.