Macros | |
| #define | __HAL_AES_GET_FLAG_IT(__HANDLE__, __FLAG__) (READ_BITS((__HANDLE__)->p_instance->INT, (__FLAG__)) == (__FLAG__)) |
| Check whether the specified AES interrupt flag is set or not. More... | |
| #define | __HAL_AES_CLEAR_FLAG_IT(__HANDLE__, __FLAG__) SET_BITS((__HANDLE__)->p_instance->INT, (__FLAG__)) |
| Clear the specified AES interrupt flag. More... | |
| #define | __HAL_AES_GET_FLAG(__HANDLE__, __FLAG__) ((READ_BITS((__HANDLE__)->p_instance->STAT, (__FLAG__)) != 0U) ? SET : RESET) |
| Check whether the specified AES flag is set or not. More... | |
| #define __HAL_AES_CLEAR_FLAG_IT | ( | __HANDLE__, | |
| __FLAG__ | |||
| ) | SET_BITS((__HANDLE__)->p_instance->INT, (__FLAG__)) |
Clear the specified AES interrupt flag.
| __HANDLE__ | Specifies the AES interrupt Handle. |
| __FLAG__ | Specifies the flag to clear. This parameter can be the following value:
|
| None |
| #define __HAL_AES_GET_FLAG | ( | __HANDLE__, | |
| __FLAG__ | |||
| ) | ((READ_BITS((__HANDLE__)->p_instance->STAT, (__FLAG__)) != 0U) ? SET : RESET) |
Check whether the specified AES flag is set or not.
| __HANDLE__ | Specifies the AES Handle. |
| __FLAG__ | Specifies the flag to check. This parameter can be one of the following values:
|
| The | new state of __FLAG__ (TRUE or FALSE). |
| #define __HAL_AES_GET_FLAG_IT | ( | __HANDLE__, | |
| __FLAG__ | |||
| ) | (READ_BITS((__HANDLE__)->p_instance->INT, (__FLAG__)) == (__FLAG__)) |
Check whether the specified AES interrupt flag is set or not.
| __HANDLE__ | Specifies the AES Handle. |
| __FLAG__ | Specifies the interrupt flag to check. This parameter can be the following value:
|
| The | new state of __FLAG__ (TRUE or FALSE). |