__HAL_RCC_GET_IT macro
Check the RCC's interrupt has occurred or not.
Syntax
#define __HAL_RCC_GET_IT(__INTERRUPT__) ((RCC->CIR & (__INTERRUPT__)) == (__INTERRUPT__)) Arguments
__INTERRUPT__
specifies the RCC interrupt source to check. This parameter can be one of the following values: @arg RCC_IT_LSIRDY: LSI ready interrupt. @arg RCC_IT_LSERDY: LSE ready interrupt. @arg RCC_IT_HSIRDY: HSI ready interrupt. @arg RCC_IT_HSERDY: HSE ready interrupt. @arg RCC_IT_PLLRDY: Main PLL ready interrupt. @arg RCC_IT_PLLI2SRDY: PLLI2S ready interrupt. @arg RCC_IT_CSS: Clock Security System interrupt
Return value
The new state of __INTERRUPT__ (TRUE or FALSE).