Home
last modified time | relevance | path

Searched refs:ICPolarity (Results 1 – 12 of 12) sorted by relevance

/loramac-node-2.7.6/src/boards/mcu/stm32/STM32L1xx_HAL_Driver/Src/
Dstm32l1xx_ll_tim.c361 TIM_ICInitStruct->ICPolarity = LL_TIM_IC_POLARITY_RISING; in LL_TIM_IC_StructInit()
749 assert_param(IS_LL_TIM_IC_POLARITY(TIM_ICInitStruct->ICPolarity)); in IC1Config()
765 (TIM_ICInitStruct->ICPolarity | TIM_CCER_CC1E)); in IC1Config()
782 assert_param(IS_LL_TIM_IC_POLARITY(TIM_ICInitStruct->ICPolarity)); in IC2Config()
798 ((TIM_ICInitStruct->ICPolarity << 4U) | TIM_CCER_CC2E)); in IC2Config()
815 assert_param(IS_LL_TIM_IC_POLARITY(TIM_ICInitStruct->ICPolarity)); in IC3Config()
831 ((TIM_ICInitStruct->ICPolarity << 8U) | TIM_CCER_CC3E)); in IC3Config()
848 assert_param(IS_LL_TIM_IC_POLARITY(TIM_ICInitStruct->ICPolarity)); in IC4Config()
864 ((TIM_ICInitStruct->ICPolarity << 12U) | TIM_CCER_CC4E)); in IC4Config()
Dstm32l1xx_hal_tim.c2911 assert_param(IS_TIM_IC_POLARITY(sConfig->ICPolarity)); in HAL_TIM_IC_ConfigChannel()
2924 sConfig->ICPolarity, in HAL_TIM_IC_ConfigChannel()
2940 sConfig->ICPolarity, in HAL_TIM_IC_ConfigChannel()
2956 sConfig->ICPolarity, in HAL_TIM_IC_ConfigChannel()
2972 sConfig->ICPolarity, in HAL_TIM_IC_ConfigChannel()
3148 TIM_TI1_SetConfig(htim->Instance, sConfig->ICPolarity, in HAL_TIM_OnePulse_ConfigChannel()
3167 TIM_TI2_SetConfig(htim->Instance, sConfig->ICPolarity, in HAL_TIM_OnePulse_ConfigChannel()
/loramac-node-2.7.6/src/boards/mcu/stm32/STM32L0xx_HAL_Driver/Src/
Dstm32l0xx_ll_tim.c338 TIM_ICInitStruct->ICPolarity = LL_TIM_IC_POLARITY_RISING; in LL_TIM_IC_StructInit()
727 assert_param(IS_LL_TIM_IC_POLARITY(TIM_ICInitStruct->ICPolarity)); in IC1Config()
743 (TIM_ICInitStruct->ICPolarity | TIM_CCER_CC1E)); in IC1Config()
760 assert_param(IS_LL_TIM_IC_POLARITY(TIM_ICInitStruct->ICPolarity)); in IC2Config()
776 ((TIM_ICInitStruct->ICPolarity << 4U) | TIM_CCER_CC2E)); in IC2Config()
793 assert_param(IS_LL_TIM_IC_POLARITY(TIM_ICInitStruct->ICPolarity)); in IC3Config()
809 ((TIM_ICInitStruct->ICPolarity << 8U) | TIM_CCER_CC3E)); in IC3Config()
826 assert_param(IS_LL_TIM_IC_POLARITY(TIM_ICInitStruct->ICPolarity)); in IC4Config()
842 ((TIM_ICInitStruct->ICPolarity << 12U) | TIM_CCER_CC4E)); in IC4Config()
Dstm32l0xx_hal_tim.c2899 assert_param(IS_TIM_IC_POLARITY(sConfig->ICPolarity)); in HAL_TIM_IC_ConfigChannel()
2912 sConfig->ICPolarity, in HAL_TIM_IC_ConfigChannel()
2928 sConfig->ICPolarity, in HAL_TIM_IC_ConfigChannel()
2944 sConfig->ICPolarity, in HAL_TIM_IC_ConfigChannel()
2960 sConfig->ICPolarity, in HAL_TIM_IC_ConfigChannel()
3135 TIM_TI1_SetConfig(htim->Instance, sConfig->ICPolarity, in HAL_TIM_OnePulse_ConfigChannel()
3154 TIM_TI2_SetConfig(htim->Instance, sConfig->ICPolarity, in HAL_TIM_OnePulse_ConfigChannel()
/loramac-node-2.7.6/src/boards/mcu/stm32/STM32L4xx_HAL_Driver/Src/
Dstm32l4xx_ll_tim.c458 TIM_ICInitStruct->ICPolarity = LL_TIM_IC_POLARITY_RISING; in LL_TIM_IC_StructInit()
1230 assert_param(IS_LL_TIM_IC_POLARITY(TIM_ICInitStruct->ICPolarity)); in IC1Config()
1246 (TIM_ICInitStruct->ICPolarity | TIM_CCER_CC1E)); in IC1Config()
1263 assert_param(IS_LL_TIM_IC_POLARITY(TIM_ICInitStruct->ICPolarity)); in IC2Config()
1279 ((TIM_ICInitStruct->ICPolarity << 4U) | TIM_CCER_CC2E)); in IC2Config()
1296 assert_param(IS_LL_TIM_IC_POLARITY(TIM_ICInitStruct->ICPolarity)); in IC3Config()
1312 ((TIM_ICInitStruct->ICPolarity << 8U) | TIM_CCER_CC3E)); in IC3Config()
1329 assert_param(IS_LL_TIM_IC_POLARITY(TIM_ICInitStruct->ICPolarity)); in IC4Config()
1345 ((TIM_ICInitStruct->ICPolarity << 12U) | TIM_CCER_CC4E)); in IC4Config()
Dstm32l4xx_hal_tim.c3435 assert_param(IS_TIM_IC_POLARITY(sConfig->ICPolarity)); in HAL_TIM_IC_ConfigChannel()
3449 sConfig->ICPolarity, in HAL_TIM_IC_ConfigChannel()
3465 sConfig->ICPolarity, in HAL_TIM_IC_ConfigChannel()
3481 sConfig->ICPolarity, in HAL_TIM_IC_ConfigChannel()
3497 sConfig->ICPolarity, in HAL_TIM_IC_ConfigChannel()
3724 TIM_TI1_SetConfig(htim->Instance, sConfig->ICPolarity, in HAL_TIM_OnePulse_ConfigChannel()
3743 TIM_TI2_SetConfig(htim->Instance, sConfig->ICPolarity, in HAL_TIM_OnePulse_ConfigChannel()
/loramac-node-2.7.6/src/boards/mcu/stm32/STM32L1xx_HAL_Driver/Inc/
Dstm32l1xx_ll_tim.h221 uint32_t ICPolarity; /*!< Specifies the active edge of the input signal. member
2029 __STATIC_INLINE void LL_TIM_IC_SetPolarity(TIM_TypeDef *TIMx, uint32_t Channel, uint32_t ICPolarity) in LL_TIM_IC_SetPolarity() argument
2033 ICPolarity << SHIFT_TAB_CCxP[iChannel]); in LL_TIM_IC_SetPolarity()
Dstm32l1xx_hal_tim.h118 uint32_t ICPolarity; /*!< Specifies the active edge of the input signal. member
134 uint32_t ICPolarity; /*!< Specifies the active edge of the input signal. member
/loramac-node-2.7.6/src/boards/mcu/stm32/STM32L0xx_HAL_Driver/Inc/
Dstm32l0xx_ll_tim.h224 uint32_t ICPolarity; /*!< Specifies the active edge of the input signal. member
2030 __STATIC_INLINE void LL_TIM_IC_SetPolarity(TIM_TypeDef *TIMx, uint32_t Channel, uint32_t ICPolarity) in LL_TIM_IC_SetPolarity() argument
2034 ICPolarity << SHIFT_TAB_CCxP[iChannel]); in LL_TIM_IC_SetPolarity()
Dstm32l0xx_hal_tim.h132 uint32_t ICPolarity; /*!< Specifies the active edge of the input signal. member
154 uint32_t ICPolarity; /*!< Specifies the active edge of the input signal. member
/loramac-node-2.7.6/src/boards/mcu/stm32/STM32L4xx_HAL_Driver/Inc/
Dstm32l4xx_ll_tim.h349 uint32_t ICPolarity; /*!< Specifies the active edge of the input signal. member
2998 __STATIC_INLINE void LL_TIM_IC_SetPolarity(TIM_TypeDef *TIMx, uint32_t Channel, uint32_t ICPolarity) in LL_TIM_IC_SetPolarity() argument
3002 ICPolarity << SHIFT_TAB_CCxP[iChannel]); in LL_TIM_IC_SetPolarity()
Dstm32l4xx_hal_tim.h149 uint32_t ICPolarity; /*!< Specifies the active edge of the input signal. member
164 uint32_t ICPolarity; /*!< Specifies the active edge of the input signal. member