Macros | |
#define | __HAL_RAMECC_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->SR &= ~(__FLAG__)) |
Clear the RAMECC pending flags. More... | |
#define | __HAL_RAMECC_DISABLE_GLOBAL_IT(__HANDLE__, __INTERRUPT__) ((((RAMECC_TypeDef *)((uint32_t)(__HANDLE__)->Instance & 0xFFFFFF00U))->IER) &= ~((__INTERRUPT__) & ~RAMECC_IT_GLOBAL_ID)) |
#define | __HAL_RAMECC_DISABLE_IT(__HANDLE__, __INTERRUPT__) |
Disable the specified RAMECC interrupts. More... | |
#define | __HAL_RAMECC_DISABLE_MONITOR_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR &= ~((__INTERRUPT__) & ~RAMECC_IT_MONITOR_ID)) |
#define | __HAL_RAMECC_ENABLE_GLOBAL_IT(__HANDLE__, __INTERRUPT__) ((((RAMECC_TypeDef *)((uint32_t)(__HANDLE__)->Instance & 0xFFFFFF00U))->IER) |= ((__INTERRUPT__) & ~RAMECC_IT_GLOBAL_ID)) |
#define | __HAL_RAMECC_ENABLE_IT(__HANDLE__, __INTERRUPT__) |
Enable the specified RAMECC interrupts. More... | |
#define | __HAL_RAMECC_ENABLE_MONITOR_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR |= ((__INTERRUPT__) & ~RAMECC_IT_MONITOR_ID)) |
#define | __HAL_RAMECC_GET_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->SR &= (__FLAG__)) |
Get the RAMECC pending flags. More... | |
#define | __HAL_RAMECC_GET_GLOBAL_IT_SOURCE(__HANDLE__, __INTERRUPT__) (((((RAMECC_TypeDef *)((uint32_t)(__HANDLE__)->Instance & 0xFFFFFF00U))->IER) & ((__INTERRUPT__) & ~RAMECC_IT_GLOBAL_ID)) ? SET : RESET) |
#define | __HAL_RAMECC_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) |
Check whether the specified RAMECC interrupt source is enabled or not. More... | |
#define | __HAL_RAMECC_GET_MONITOR_IT_SOURCE(__HANDLE__, __INTERRUPT__) ((((__HANDLE__)->Instance->CR) & ((__INTERRUPT__) & ~RAMECC_IT_GLOBAL_ID)) ? SET : RESET) |
#define | __HAL_RAMECC_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_RAMECC_STATE_RESET) |
Reset the RAMECC handle state. More... | |
#define __HAL_RAMECC_CLEAR_FLAG | ( | __HANDLE__, | |
__FLAG__ | |||
) | ((__HANDLE__)->Instance->SR &= ~(__FLAG__)) |
Clear the RAMECC pending flags.
<strong>HANDLE</strong> | : RAMECC handle. |
<strong>FLAG</strong> | : specifies the flag to clear. This parameter can be any combination of the following values:
|
None. |
Definition at line 223 of file stm32h7xx_hal_ramecc.h.
#define __HAL_RAMECC_DISABLE_GLOBAL_IT | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) | ((((RAMECC_TypeDef *)((uint32_t)(__HANDLE__)->Instance & 0xFFFFFF00U))->IER) &= ~((__INTERRUPT__) & ~RAMECC_IT_GLOBAL_ID)) |
Definition at line 150 of file stm32h7xx_hal_ramecc.h.
#define __HAL_RAMECC_DISABLE_IT | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) |
Disable the specified RAMECC interrupts.
<strong>HANDLE</strong> | : RAMECC handle. |
<strong>INTERRUPT</strong> | specifies the RAMECC interrupt sources to be enabled or disabled. This parameter can be one of the following values:
|
None |
Definition at line 169 of file stm32h7xx_hal_ramecc.h.
#define __HAL_RAMECC_DISABLE_MONITOR_IT | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) | ((__HANDLE__)->Instance->CR &= ~((__INTERRUPT__) & ~RAMECC_IT_MONITOR_ID)) |
Definition at line 151 of file stm32h7xx_hal_ramecc.h.
#define __HAL_RAMECC_ENABLE_GLOBAL_IT | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) | ((((RAMECC_TypeDef *)((uint32_t)(__HANDLE__)->Instance & 0xFFFFFF00U))->IER) |= ((__INTERRUPT__) & ~RAMECC_IT_GLOBAL_ID)) |
Definition at line 126 of file stm32h7xx_hal_ramecc.h.
#define __HAL_RAMECC_ENABLE_IT | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) |
Enable the specified RAMECC interrupts.
<strong>HANDLE</strong> | : RAMECC handle. |
<strong>INTERRUPT</strong> | specifies the RAMECC interrupt sources to be enabled or disabled. This parameter can be one of the following values:
|
None |
Definition at line 145 of file stm32h7xx_hal_ramecc.h.
#define __HAL_RAMECC_ENABLE_MONITOR_IT | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) | ((__HANDLE__)->Instance->CR |= ((__INTERRUPT__) & ~RAMECC_IT_MONITOR_ID)) |
Definition at line 127 of file stm32h7xx_hal_ramecc.h.
#define __HAL_RAMECC_GET_FLAG | ( | __HANDLE__, | |
__FLAG__ | |||
) | ((__HANDLE__)->Instance->SR &= (__FLAG__)) |
Get the RAMECC pending flags.
<strong>HANDLE</strong> | : RAMECC handle. |
<strong>FLAG</strong> | : specifies the flag to clear. This parameter can be any combination of the following values:
|
The | state of FLAG (SET or RESET). |
Definition at line 209 of file stm32h7xx_hal_ramecc.h.
#define __HAL_RAMECC_GET_GLOBAL_IT_SOURCE | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) | (((((RAMECC_TypeDef *)((uint32_t)(__HANDLE__)->Instance & 0xFFFFFF00U))->IER) & ((__INTERRUPT__) & ~RAMECC_IT_GLOBAL_ID)) ? SET : RESET) |
Definition at line 174 of file stm32h7xx_hal_ramecc.h.
#define __HAL_RAMECC_GET_IT_SOURCE | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) |
Check whether the specified RAMECC interrupt source is enabled or not.
<strong>HANDLE</strong> | : Specifies the RAMECC Handle. |
<strong>INTERRUPT</strong> | : Specifies the RAMECC interrupt source to check. This parameter can be one of the following values:
|
The | new state of INTERRUPT (SET or RESET). |
Definition at line 193 of file stm32h7xx_hal_ramecc.h.
#define __HAL_RAMECC_GET_MONITOR_IT_SOURCE | ( | __HANDLE__, | |
__INTERRUPT__ | |||
) | ((((__HANDLE__)->Instance->CR) & ((__INTERRUPT__) & ~RAMECC_IT_GLOBAL_ID)) ? SET : RESET) |
Definition at line 175 of file stm32h7xx_hal_ramecc.h.
#define __HAL_RAMECC_RESET_HANDLE_STATE | ( | __HANDLE__ | ) | ((__HANDLE__)->State = HAL_RAMECC_STATE_RESET) |
Reset the RAMECC handle state.
<strong>HANDLE</strong> | : Specifies the RAMECC Handle. |
None. |
Definition at line 230 of file stm32h7xx_hal_ramecc.h.