Lines Matching refs:sSlaveConfig

240                                                   const TIM_SlaveConfigTypeDef *sSlaveConfig);
5930 …Def HAL_TIM_SlaveConfigSynchro(TIM_HandleTypeDef *htim, const TIM_SlaveConfigTypeDef *sSlaveConfig) in HAL_TIM_SlaveConfigSynchro() argument
5934 assert_param(IS_TIM_SLAVE_MODE(sSlaveConfig->SlaveMode)); in HAL_TIM_SlaveConfigSynchro()
5935 assert_param(IS_TIM_TRIGGER_INSTANCE(htim->Instance, sSlaveConfig->InputTrigger)); in HAL_TIM_SlaveConfigSynchro()
5941 if (TIM_SlaveTimer_SetConfig(htim, sSlaveConfig) != HAL_OK) in HAL_TIM_SlaveConfigSynchro()
5971 const TIM_SlaveConfigTypeDef *sSlaveConfig) in HAL_TIM_SlaveConfigSynchro_IT() argument
5975 assert_param(IS_TIM_SLAVE_MODE(sSlaveConfig->SlaveMode)); in HAL_TIM_SlaveConfigSynchro_IT()
5976 assert_param(IS_TIM_TRIGGER_INSTANCE(htim->Instance, sSlaveConfig->InputTrigger)); in HAL_TIM_SlaveConfigSynchro_IT()
5982 if (TIM_SlaveTimer_SetConfig(htim, sSlaveConfig) != HAL_OK) in HAL_TIM_SlaveConfigSynchro_IT()
7727 const TIM_SlaveConfigTypeDef *sSlaveConfig) in TIM_SlaveTimer_SetConfig() argument
7740 tmpsmcr |= sSlaveConfig->InputTrigger; in TIM_SlaveTimer_SetConfig()
7745 tmpsmcr |= sSlaveConfig->SlaveMode; in TIM_SlaveTimer_SetConfig()
7751 switch (sSlaveConfig->InputTrigger) in TIM_SlaveTimer_SetConfig()
7757 assert_param(IS_TIM_TRIGGERPRESCALER(sSlaveConfig->TriggerPrescaler)); in TIM_SlaveTimer_SetConfig()
7758 assert_param(IS_TIM_TRIGGERPOLARITY(sSlaveConfig->TriggerPolarity)); in TIM_SlaveTimer_SetConfig()
7759 assert_param(IS_TIM_TRIGGERFILTER(sSlaveConfig->TriggerFilter)); in TIM_SlaveTimer_SetConfig()
7762 sSlaveConfig->TriggerPrescaler, in TIM_SlaveTimer_SetConfig()
7763 sSlaveConfig->TriggerPolarity, in TIM_SlaveTimer_SetConfig()
7764 sSlaveConfig->TriggerFilter); in TIM_SlaveTimer_SetConfig()
7772 assert_param(IS_TIM_TRIGGERFILTER(sSlaveConfig->TriggerFilter)); in TIM_SlaveTimer_SetConfig()
7774 if ((sSlaveConfig->SlaveMode == TIM_SLAVEMODE_GATED) || \ in TIM_SlaveTimer_SetConfig()
7775 (sSlaveConfig->SlaveMode == TIM_SLAVEMODE_COMBINED_GATEDRESET)) in TIM_SlaveTimer_SetConfig()
7787 tmpccmr1 |= ((sSlaveConfig->TriggerFilter) << 4U); in TIM_SlaveTimer_SetConfig()
7799 assert_param(IS_TIM_TRIGGERPOLARITY(sSlaveConfig->TriggerPolarity)); in TIM_SlaveTimer_SetConfig()
7800 assert_param(IS_TIM_TRIGGERFILTER(sSlaveConfig->TriggerFilter)); in TIM_SlaveTimer_SetConfig()
7804 sSlaveConfig->TriggerPolarity, in TIM_SlaveTimer_SetConfig()
7805 sSlaveConfig->TriggerFilter); in TIM_SlaveTimer_SetConfig()
7813 assert_param(IS_TIM_TRIGGERPOLARITY(sSlaveConfig->TriggerPolarity)); in TIM_SlaveTimer_SetConfig()
7814 assert_param(IS_TIM_TRIGGERFILTER(sSlaveConfig->TriggerFilter)); in TIM_SlaveTimer_SetConfig()
7818 sSlaveConfig->TriggerPolarity, in TIM_SlaveTimer_SetConfig()
7819 sSlaveConfig->TriggerFilter); in TIM_SlaveTimer_SetConfig()
7835 … assert_param(IS_TIM_INTERNAL_TRIGGEREVENT_INSTANCE((htim->Instance), sSlaveConfig->InputTrigger)); in TIM_SlaveTimer_SetConfig()