Home
last modified time | relevance | path

Searched refs:RTC_IT (Results 1 – 6 of 6) sorted by relevance

/external/platform/stm32f1xx/STM32F10x_StdPeriph_Driver/src/
A Dstm32f10x_rtc.c89 void RTC_ITConfig(uint16_t RTC_IT, FunctionalState NewState) in RTC_ITConfig() argument
92 assert_param(IS_RTC_IT(RTC_IT)); in RTC_ITConfig()
97 RTC->CRH |= RTC_IT; in RTC_ITConfig()
101 RTC->CRH &= (uint16_t)~RTC_IT; in RTC_ITConfig()
290 ITStatus RTC_GetITStatus(uint16_t RTC_IT) in RTC_GetITStatus() argument
294 assert_param(IS_RTC_GET_IT(RTC_IT)); in RTC_GetITStatus()
296 bitstatus = (ITStatus)(RTC->CRL & RTC_IT); in RTC_GetITStatus()
297 if (((RTC->CRH & RTC_IT) != (uint16_t)RESET) && (bitstatus != (uint16_t)RESET)) in RTC_GetITStatus()
317 void RTC_ClearITPendingBit(uint16_t RTC_IT) in RTC_ClearITPendingBit() argument
320 assert_param(IS_RTC_IT(RTC_IT)); in RTC_ClearITPendingBit()
[all …]
/external/platform/stm32f1xx/STM32F10x_StdPeriph_Driver/inc/
A Dstm32f10x_rtc.h102 void RTC_ITConfig(uint16_t RTC_IT, FunctionalState NewState);
114 ITStatus RTC_GetITStatus(uint16_t RTC_IT);
115 void RTC_ClearITPendingBit(uint16_t RTC_IT);
/external/platform/stm32f2xx/STM32F2xx_StdPeriph_Driver/src/
A Dstm32f2xx_rtc.c2042 void RTC_ITConfig(uint32_t RTC_IT, FunctionalState NewState) in RTC_ITConfig() argument
2045 assert_param(IS_RTC_CONFIG_IT(RTC_IT)); in RTC_ITConfig()
2055 RTC->CR |= (uint32_t)(RTC_IT & ~RTC_TAFCR_TAMPIE); in RTC_ITConfig()
2057 RTC->TAFCR |= (uint32_t)(RTC_IT & RTC_TAFCR_TAMPIE); in RTC_ITConfig()
2064 RTC->TAFCR &= (uint32_t)~(RTC_IT & RTC_TAFCR_TAMPIE); in RTC_ITConfig()
2144 ITStatus RTC_GetITStatus(uint32_t RTC_IT) in RTC_GetITStatus() argument
2150 assert_param(IS_RTC_GET_IT(RTC_IT)); in RTC_GetITStatus()
2156 enablestatus = (uint32_t)((RTC->CR & RTC_IT) | (tmpreg & (RTC_IT >> 15))); in RTC_GetITStatus()
2184 void RTC_ClearITPendingBit(uint32_t RTC_IT) in RTC_ClearITPendingBit() argument
2189 assert_param(IS_RTC_CLEAR_IT(RTC_IT)); in RTC_ClearITPendingBit()
[all …]
/external/platform/stm32f4xx/STM32F4xx_StdPeriph_Driver/src/
A Dstm32f4xx_rtc.c2550 void RTC_ITConfig(uint32_t RTC_IT, FunctionalState NewState) in RTC_ITConfig() argument
2553 assert_param(IS_RTC_CONFIG_IT(RTC_IT)); in RTC_ITConfig()
2563 RTC->CR |= (uint32_t)(RTC_IT & ~RTC_TAFCR_TAMPIE); in RTC_ITConfig()
2565 RTC->TAFCR |= (uint32_t)(RTC_IT & RTC_TAFCR_TAMPIE); in RTC_ITConfig()
2572 RTC->TAFCR &= (uint32_t)~(RTC_IT & RTC_TAFCR_TAMPIE); in RTC_ITConfig()
2657 ITStatus RTC_GetITStatus(uint32_t RTC_IT) in RTC_GetITStatus() argument
2663 assert_param(IS_RTC_GET_IT(RTC_IT)); in RTC_GetITStatus()
2669 …enablestatus = (uint32_t)((RTC->CR & RTC_IT) | (tmpreg & (RTC_IT >> 15)) | (tmpreg & (RTC_IT >> 16… in RTC_GetITStatus()
2698 void RTC_ClearITPendingBit(uint32_t RTC_IT) in RTC_ClearITPendingBit() argument
2703 assert_param(IS_RTC_CLEAR_IT(RTC_IT)); in RTC_ClearITPendingBit()
[all …]
/external/platform/stm32f2xx/STM32F2xx_StdPeriph_Driver/inc/
A Dstm32f2xx_rtc.h630 void RTC_ITConfig(uint32_t RTC_IT, FunctionalState NewState);
633 ITStatus RTC_GetITStatus(uint32_t RTC_IT);
634 void RTC_ClearITPendingBit(uint32_t RTC_IT);
/external/platform/stm32f4xx/STM32F4xx_StdPeriph_Driver/inc/
A Dstm32f4xx_rtc.h861 void RTC_ITConfig(uint32_t RTC_IT, FunctionalState NewState);
864 ITStatus RTC_GetITStatus(uint32_t RTC_IT);
865 void RTC_ClearITPendingBit(uint32_t RTC_IT);

Completed in 24 milliseconds