Lines Matching refs:sSlaveConfig
240 const TIM_SlaveConfigTypeDef *sSlaveConfig);
5939 …Def HAL_TIM_SlaveConfigSynchro(TIM_HandleTypeDef *htim, const TIM_SlaveConfigTypeDef *sSlaveConfig) in HAL_TIM_SlaveConfigSynchro() argument
5943 assert_param(IS_TIM_SLAVE_MODE(sSlaveConfig->SlaveMode)); in HAL_TIM_SlaveConfigSynchro()
5944 assert_param(IS_TIM_TRIGGER_INSTANCE(htim->Instance, sSlaveConfig->InputTrigger)); in HAL_TIM_SlaveConfigSynchro()
5950 if (TIM_SlaveTimer_SetConfig(htim, sSlaveConfig) != HAL_OK) in HAL_TIM_SlaveConfigSynchro()
5980 const TIM_SlaveConfigTypeDef *sSlaveConfig) in HAL_TIM_SlaveConfigSynchro_IT() argument
5984 assert_param(IS_TIM_SLAVE_MODE(sSlaveConfig->SlaveMode)); in HAL_TIM_SlaveConfigSynchro_IT()
5985 assert_param(IS_TIM_TRIGGER_INSTANCE(htim->Instance, sSlaveConfig->InputTrigger)); in HAL_TIM_SlaveConfigSynchro_IT()
5991 if (TIM_SlaveTimer_SetConfig(htim, sSlaveConfig) != HAL_OK) in HAL_TIM_SlaveConfigSynchro_IT()
7739 const TIM_SlaveConfigTypeDef *sSlaveConfig) in TIM_SlaveTimer_SetConfig() argument
7752 tmpsmcr |= sSlaveConfig->InputTrigger; in TIM_SlaveTimer_SetConfig()
7757 tmpsmcr |= sSlaveConfig->SlaveMode; in TIM_SlaveTimer_SetConfig()
7763 switch (sSlaveConfig->InputTrigger) in TIM_SlaveTimer_SetConfig()
7769 assert_param(IS_TIM_TRIGGERPRESCALER(sSlaveConfig->TriggerPrescaler)); in TIM_SlaveTimer_SetConfig()
7770 assert_param(IS_TIM_TRIGGERPOLARITY(sSlaveConfig->TriggerPolarity)); in TIM_SlaveTimer_SetConfig()
7771 assert_param(IS_TIM_TRIGGERFILTER(sSlaveConfig->TriggerFilter)); in TIM_SlaveTimer_SetConfig()
7774 sSlaveConfig->TriggerPrescaler, in TIM_SlaveTimer_SetConfig()
7775 sSlaveConfig->TriggerPolarity, in TIM_SlaveTimer_SetConfig()
7776 sSlaveConfig->TriggerFilter); in TIM_SlaveTimer_SetConfig()
7784 assert_param(IS_TIM_TRIGGERFILTER(sSlaveConfig->TriggerFilter)); in TIM_SlaveTimer_SetConfig()
7786 if ((sSlaveConfig->SlaveMode == TIM_SLAVEMODE_GATED) || \ in TIM_SlaveTimer_SetConfig()
7787 (sSlaveConfig->SlaveMode == TIM_SLAVEMODE_COMBINED_GATEDRESET)) in TIM_SlaveTimer_SetConfig()
7799 tmpccmr1 |= ((sSlaveConfig->TriggerFilter) << 4U); in TIM_SlaveTimer_SetConfig()
7811 assert_param(IS_TIM_TRIGGERPOLARITY(sSlaveConfig->TriggerPolarity)); in TIM_SlaveTimer_SetConfig()
7812 assert_param(IS_TIM_TRIGGERFILTER(sSlaveConfig->TriggerFilter)); in TIM_SlaveTimer_SetConfig()
7816 sSlaveConfig->TriggerPolarity, in TIM_SlaveTimer_SetConfig()
7817 sSlaveConfig->TriggerFilter); in TIM_SlaveTimer_SetConfig()
7825 assert_param(IS_TIM_TRIGGERPOLARITY(sSlaveConfig->TriggerPolarity)); in TIM_SlaveTimer_SetConfig()
7826 assert_param(IS_TIM_TRIGGERFILTER(sSlaveConfig->TriggerFilter)); in TIM_SlaveTimer_SetConfig()
7830 sSlaveConfig->TriggerPolarity, in TIM_SlaveTimer_SetConfig()
7831 sSlaveConfig->TriggerFilter); in TIM_SlaveTimer_SetConfig()
7842 … assert_param(IS_TIM_INTERNAL_TRIGGEREVENT_INSTANCE((htim->Instance), sSlaveConfig->InputTrigger)); in TIM_SlaveTimer_SetConfig()