Lines Matching refs:sSlaveConfig

232                                                   const TIM_SlaveConfigTypeDef *sSlaveConfig);
5903 …Def HAL_TIM_SlaveConfigSynchro(TIM_HandleTypeDef *htim, const TIM_SlaveConfigTypeDef *sSlaveConfig) in HAL_TIM_SlaveConfigSynchro() argument
5907 assert_param(IS_TIM_SLAVE_MODE(sSlaveConfig->SlaveMode)); in HAL_TIM_SlaveConfigSynchro()
5908 assert_param(IS_TIM_TRIGGER_INSTANCE(htim->Instance, sSlaveConfig->InputTrigger)); in HAL_TIM_SlaveConfigSynchro()
5914 if (TIM_SlaveTimer_SetConfig(htim, sSlaveConfig) != HAL_OK) in HAL_TIM_SlaveConfigSynchro()
5944 const TIM_SlaveConfigTypeDef *sSlaveConfig) in HAL_TIM_SlaveConfigSynchro_IT() argument
5948 assert_param(IS_TIM_SLAVE_MODE(sSlaveConfig->SlaveMode)); in HAL_TIM_SlaveConfigSynchro_IT()
5949 assert_param(IS_TIM_TRIGGER_INSTANCE(htim->Instance, sSlaveConfig->InputTrigger)); in HAL_TIM_SlaveConfigSynchro_IT()
5955 if (TIM_SlaveTimer_SetConfig(htim, sSlaveConfig) != HAL_OK) in HAL_TIM_SlaveConfigSynchro_IT()
7703 const TIM_SlaveConfigTypeDef *sSlaveConfig) in TIM_SlaveTimer_SetConfig() argument
7716 tmpsmcr |= sSlaveConfig->InputTrigger; in TIM_SlaveTimer_SetConfig()
7721 tmpsmcr |= sSlaveConfig->SlaveMode; in TIM_SlaveTimer_SetConfig()
7727 switch (sSlaveConfig->InputTrigger) in TIM_SlaveTimer_SetConfig()
7733 assert_param(IS_TIM_TRIGGERPRESCALER(sSlaveConfig->TriggerPrescaler)); in TIM_SlaveTimer_SetConfig()
7734 assert_param(IS_TIM_TRIGGERPOLARITY(sSlaveConfig->TriggerPolarity)); in TIM_SlaveTimer_SetConfig()
7735 assert_param(IS_TIM_TRIGGERFILTER(sSlaveConfig->TriggerFilter)); in TIM_SlaveTimer_SetConfig()
7738 sSlaveConfig->TriggerPrescaler, in TIM_SlaveTimer_SetConfig()
7739 sSlaveConfig->TriggerPolarity, in TIM_SlaveTimer_SetConfig()
7740 sSlaveConfig->TriggerFilter); in TIM_SlaveTimer_SetConfig()
7748 assert_param(IS_TIM_TRIGGERFILTER(sSlaveConfig->TriggerFilter)); in TIM_SlaveTimer_SetConfig()
7750 if ((sSlaveConfig->SlaveMode == TIM_SLAVEMODE_GATED) || \ in TIM_SlaveTimer_SetConfig()
7751 (sSlaveConfig->SlaveMode == TIM_SLAVEMODE_COMBINED_GATEDRESET)) in TIM_SlaveTimer_SetConfig()
7763 tmpccmr1 |= ((sSlaveConfig->TriggerFilter) << 4U); in TIM_SlaveTimer_SetConfig()
7775 assert_param(IS_TIM_TRIGGERPOLARITY(sSlaveConfig->TriggerPolarity)); in TIM_SlaveTimer_SetConfig()
7776 assert_param(IS_TIM_TRIGGERFILTER(sSlaveConfig->TriggerFilter)); in TIM_SlaveTimer_SetConfig()
7780 sSlaveConfig->TriggerPolarity, in TIM_SlaveTimer_SetConfig()
7781 sSlaveConfig->TriggerFilter); in TIM_SlaveTimer_SetConfig()
7789 assert_param(IS_TIM_TRIGGERPOLARITY(sSlaveConfig->TriggerPolarity)); in TIM_SlaveTimer_SetConfig()
7790 assert_param(IS_TIM_TRIGGERFILTER(sSlaveConfig->TriggerFilter)); in TIM_SlaveTimer_SetConfig()
7794 sSlaveConfig->TriggerPolarity, in TIM_SlaveTimer_SetConfig()
7795 sSlaveConfig->TriggerFilter); in TIM_SlaveTimer_SetConfig()
7815 … assert_param(IS_TIM_INTERNAL_TRIGGEREVENT_INSTANCE((htim->Instance), sSlaveConfig->InputTrigger)); in TIM_SlaveTimer_SetConfig()