Home
last modified time | relevance | path

Searched refs:RCC_IT (Results 1 – 2 of 2) sorted by relevance

/device/soc/st/stm32f407zg/uniproton/board/common/STM32F4xx_StdPeriph_Driver/src/
Dstm32f4xx_rcc.c2146 void RCC_ITConfig(uint8_t RCC_IT, FunctionalState NewState) in RCC_ITConfig() argument
2149 assert_param(IS_RCC_IT(RCC_IT)); in RCC_ITConfig()
2154 *(__IO uint8_t *) CIR_BYTE2_ADDRESS |= RCC_IT; in RCC_ITConfig()
2159 *(__IO uint8_t *) CIR_BYTE2_ADDRESS &= (uint8_t)~RCC_IT; in RCC_ITConfig()
2248 ITStatus RCC_GetITStatus(uint8_t RCC_IT) in RCC_GetITStatus() argument
2253 assert_param(IS_RCC_GET_IT(RCC_IT)); in RCC_GetITStatus()
2256 if ((RCC->CIR & RCC_IT) != (uint32_t)RESET) in RCC_GetITStatus()
2282 void RCC_ClearITPendingBit(uint8_t RCC_IT) in RCC_ClearITPendingBit() argument
2285 assert_param(IS_RCC_CLEAR_IT(RCC_IT)); in RCC_ClearITPendingBit()
2289 *(__IO uint8_t *) CIR_BYTE3_ADDRESS = RCC_IT; in RCC_ClearITPendingBit()
/device/soc/st/stm32f407zg/uniproton/board/common/STM32F4xx_StdPeriph_Driver/inc/
Dstm32f4xx_rcc.h610 void RCC_ITConfig(uint8_t RCC_IT, FunctionalState NewState);
613 ITStatus RCC_GetITStatus(uint8_t RCC_IT);
614 void RCC_ClearITPendingBit(uint8_t RCC_IT);