Lines Matching refs:TIM_IT
2316 void TIM_ITConfig(TIM_TypeDef* TIMx, uint16_t TIM_IT, FunctionalState NewState) in TIM_ITConfig() argument
2320 assert_param(IS_TIM_IT(TIM_IT)); in TIM_ITConfig()
2326 TIMx->DIER |= TIM_IT; in TIM_ITConfig()
2331 TIMx->DIER &= (uint16_t)~TIM_IT; in TIM_ITConfig()
2480 ITStatus TIM_GetITStatus(TIM_TypeDef* TIMx, uint16_t TIM_IT) in TIM_GetITStatus() argument
2487 assert_param(IS_TIM_GET_IT(TIM_IT)); in TIM_GetITStatus()
2489 itstatus = TIMx->SR & TIM_IT; in TIM_GetITStatus()
2491 itenable = TIMx->DIER & TIM_IT; in TIM_GetITStatus()
2528 void TIM_ClearITPendingBit(TIM_TypeDef* TIMx, uint16_t TIM_IT) in TIM_ClearITPendingBit() argument
2532 assert_param(IS_TIM_IT(TIM_IT)); in TIM_ClearITPendingBit()
2535 TIMx->SR = (uint16_t)~TIM_IT; in TIM_ClearITPendingBit()