Collaboration diagram for HMAC Exported Macros:Macros | |
| #define | __HAL_HMAC_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->state = HAL_HMAC_STATE_RESET) |
| Reset HMAC handle states. More... | |
| #define | __HAL_HMAC_ENABLE(__HANDLE__) SET_BITS((__HANDLE__)->p_instance->CTRL, HMAC_CTRL_ENABLE) |
| Enable the specified HMAC peripheral. More... | |
| #define | __HAL_HMAC_DISABLE(__HANDLE__) CLEAR_BITS((__HANDLE__)->p_instance->CTRL, HMAC_CTRL_ENABLE) |
| Disable the specified HMAC peripheral. More... | |
| #define | __HAL_HMAC_ENABLE_IT(__HANDLE__) ll_hmac_enable_it_done((__HANDLE__)->p_instance) |
| Enable the HMAC interrupt. More... | |
| #define | __HAL_HMAC_DISABLE_IT(__HANDLE__) ll_hmac_disable_it_done((__HANDLE__)->p_instance) |
| Disable the HMAC interrupt. More... | |
| #define | __HAL_HMAC_GET_FLAG_IT(__HANDLE__, __FLAG__) (READ_BITS((__HANDLE__)->p_instance->INTERRUPT, (__FLAG__)) == (__FLAG__)) |
| Check whether the specified HMAC interrupt flag is set or not. More... | |
| #define | __HAL_HMAC_CLEAR_FLAG_IT(__HANDLE__, __FLAG__) SET_BITS((__HANDLE__)->p_instance->INTERRUPT, (__FLAG__)) |
| Clear the specified HMAC interrupt flag. More... | |
| #define | __HAL_HMAC_GET_FLAG(__HANDLE__, __FLAG__) ((READ_BITS((__HANDLE__)->p_instance->STATUS, (__FLAG__)) != 0) ? 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->INTERRUPT, (__FLAG__)) |
Clear the specified HMAC interrupt flag.
| <strong>HANDLE</strong> | Specifies the HMAC interrupt Handle. |
| <strong>FLAG</strong> | Specifies the flag to clear. This parameter can be one of the following values:
|
| None |
Definition at line 324 of file gr55xx_hal_hmac.h.
| #define __HAL_HMAC_DISABLE | ( | __HANDLE__ | ) | CLEAR_BITS((__HANDLE__)->p_instance->CTRL, HMAC_CTRL_ENABLE) |
Disable the specified HMAC peripheral.
| <strong>HANDLE</strong> | Specifies the HMAC Handle. |
| None |
Definition at line 294 of file gr55xx_hal_hmac.h.
| #define __HAL_HMAC_DISABLE_IT | ( | __HANDLE__ | ) | ll_hmac_disable_it_done((__HANDLE__)->p_instance) |
Disable the HMAC interrupt.
| <strong>HANDLE</strong> | Specifies the HMAC Handle. |
| None |
Definition at line 306 of file gr55xx_hal_hmac.h.
| #define __HAL_HMAC_ENABLE | ( | __HANDLE__ | ) | SET_BITS((__HANDLE__)->p_instance->CTRL, HMAC_CTRL_ENABLE) |
Enable the specified HMAC peripheral.
| <strong>HANDLE</strong> | Specifies the HMAC Handle. |
| None |
Definition at line 288 of file gr55xx_hal_hmac.h.
| #define __HAL_HMAC_ENABLE_IT | ( | __HANDLE__ | ) | ll_hmac_enable_it_done((__HANDLE__)->p_instance) |
Enable the HMAC interrupt.
| <strong>HANDLE</strong> | Specifies the HMAC Handle. |
| None |
Definition at line 300 of file gr55xx_hal_hmac.h.
| #define __HAL_HMAC_GET_FLAG | ( | __HANDLE__, | |
| __FLAG__ | |||
| ) | ((READ_BITS((__HANDLE__)->p_instance->STATUS, (__FLAG__)) != 0) ? SET : RESET) |
Check whether the specified HMAC flag is set or not.
| <strong>HANDLE</strong> | Specifies the HMAC Handle. |
| <strong>FLAG</strong> | 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 337 of file gr55xx_hal_hmac.h.
| #define __HAL_HMAC_GET_FLAG_IT | ( | __HANDLE__, | |
| __FLAG__ | |||
| ) | (READ_BITS((__HANDLE__)->p_instance->INTERRUPT, (__FLAG__)) == (__FLAG__)) |
Check whether the specified HMAC interrupt flag is set or not.
| <strong>HANDLE</strong> | Specifies the HMAC Handle. |
| <strong>FLAG</strong> | Specifies the interrupt flag to check. This parameter can be one of the following values:
|
| The | new state of FLAG (TRUE or FALSE). |
Definition at line 315 of file gr55xx_hal_hmac.h.
| #define __HAL_HMAC_RESET_HANDLE_STATE | ( | __HANDLE__ | ) | ((__HANDLE__)->state = HAL_HMAC_STATE_RESET) |
Reset HMAC handle states.
| <strong>HANDLE</strong> | HMAC handle. |
| None |
Definition at line 282 of file gr55xx_hal_hmac.h.