Lines Matching refs:sSlaveConfig

240                                                   const TIM_SlaveConfigTypeDef *sSlaveConfig);
5762 …Def HAL_TIM_SlaveConfigSynchro(TIM_HandleTypeDef *htim, const TIM_SlaveConfigTypeDef *sSlaveConfig) in HAL_TIM_SlaveConfigSynchro() argument
5766 assert_param(IS_TIM_SLAVE_MODE(sSlaveConfig->SlaveMode)); in HAL_TIM_SlaveConfigSynchro()
5767 assert_param(IS_TIM_TRIGGER_INSTANCE(htim->Instance, sSlaveConfig->InputTrigger)); in HAL_TIM_SlaveConfigSynchro()
5773 if (TIM_SlaveTimer_SetConfig(htim, sSlaveConfig) != HAL_OK) in HAL_TIM_SlaveConfigSynchro()
5803 const TIM_SlaveConfigTypeDef *sSlaveConfig) in HAL_TIM_SlaveConfigSynchro_IT() argument
5807 assert_param(IS_TIM_SLAVE_MODE(sSlaveConfig->SlaveMode)); in HAL_TIM_SlaveConfigSynchro_IT()
5808 assert_param(IS_TIM_TRIGGER_INSTANCE(htim->Instance, sSlaveConfig->InputTrigger)); in HAL_TIM_SlaveConfigSynchro_IT()
5814 if (TIM_SlaveTimer_SetConfig(htim, sSlaveConfig) != HAL_OK) in HAL_TIM_SlaveConfigSynchro_IT()
7578 const TIM_SlaveConfigTypeDef *sSlaveConfig) in TIM_SlaveTimer_SetConfig() argument
7591 tmpsmcr |= sSlaveConfig->InputTrigger; in TIM_SlaveTimer_SetConfig()
7596 tmpsmcr |= sSlaveConfig->SlaveMode; in TIM_SlaveTimer_SetConfig()
7602 switch (sSlaveConfig->InputTrigger) in TIM_SlaveTimer_SetConfig()
7608 assert_param(IS_TIM_TRIGGERPRESCALER(sSlaveConfig->TriggerPrescaler)); in TIM_SlaveTimer_SetConfig()
7609 assert_param(IS_TIM_TRIGGERPOLARITY(sSlaveConfig->TriggerPolarity)); in TIM_SlaveTimer_SetConfig()
7610 assert_param(IS_TIM_TRIGGERFILTER(sSlaveConfig->TriggerFilter)); in TIM_SlaveTimer_SetConfig()
7613 sSlaveConfig->TriggerPrescaler, in TIM_SlaveTimer_SetConfig()
7614 sSlaveConfig->TriggerPolarity, in TIM_SlaveTimer_SetConfig()
7615 sSlaveConfig->TriggerFilter); in TIM_SlaveTimer_SetConfig()
7623 assert_param(IS_TIM_TRIGGERFILTER(sSlaveConfig->TriggerFilter)); in TIM_SlaveTimer_SetConfig()
7625 if ((sSlaveConfig->SlaveMode == TIM_SLAVEMODE_GATED) || \ in TIM_SlaveTimer_SetConfig()
7626 (sSlaveConfig->SlaveMode == TIM_SLAVEMODE_COMBINED_GATEDRESET)) in TIM_SlaveTimer_SetConfig()
7638 tmpccmr1 |= ((sSlaveConfig->TriggerFilter) << 4U); in TIM_SlaveTimer_SetConfig()
7650 assert_param(IS_TIM_TRIGGERPOLARITY(sSlaveConfig->TriggerPolarity)); in TIM_SlaveTimer_SetConfig()
7651 assert_param(IS_TIM_TRIGGERFILTER(sSlaveConfig->TriggerFilter)); in TIM_SlaveTimer_SetConfig()
7655 sSlaveConfig->TriggerPolarity, in TIM_SlaveTimer_SetConfig()
7656 sSlaveConfig->TriggerFilter); in TIM_SlaveTimer_SetConfig()
7664 assert_param(IS_TIM_TRIGGERPOLARITY(sSlaveConfig->TriggerPolarity)); in TIM_SlaveTimer_SetConfig()
7665 assert_param(IS_TIM_TRIGGERFILTER(sSlaveConfig->TriggerFilter)); in TIM_SlaveTimer_SetConfig()
7669 sSlaveConfig->TriggerPolarity, in TIM_SlaveTimer_SetConfig()
7670 sSlaveConfig->TriggerFilter); in TIM_SlaveTimer_SetConfig()
7694 … assert_param(IS_TIM_INTERNAL_TRIGGEREVENT_INSTANCE((htim->Instance), sSlaveConfig->InputTrigger)); in TIM_SlaveTimer_SetConfig()