STM32LIB
Macros
TIM_Input_Capture_Selection

Macros

#define TIM_ICSelection_DirectTI   ((uint16_t)0x0001)
 
#define TIM_ICSelection_IndirectTI   ((uint16_t)0x0002)
 
#define TIM_ICSelection_TRC   ((uint16_t)0x0003)
 
#define IS_TIM_IC_SELECTION(SELECTION)
 

Detailed Description

Macro Definition Documentation

#define TIM_ICSelection_DirectTI   ((uint16_t)0x0001)

TIM Input 1, 2, 3 or 4 is selected to be connected to IC1, IC2, IC3 or IC4, respectively

#define TIM_ICSelection_IndirectTI   ((uint16_t)0x0002)

TIM Input 1, 2, 3 or 4 is selected to be connected to IC2, IC1, IC4 or IC3, respectively.

#define TIM_ICSelection_TRC   ((uint16_t)0x0003)

TIM Input 1, 2, 3 or 4 is selected to be connected to TRC.

#define IS_TIM_IC_SELECTION (   SELECTION)
Value:
(((SELECTION) == TIM_ICSelection_DirectTI) || \
((SELECTION) == TIM_ICSelection_IndirectTI) || \
((SELECTION) == TIM_ICSelection_TRC))
#define TIM_ICSelection_IndirectTI
Definition: stm32f0xx_tim.h:563
#define TIM_ICSelection_TRC
Definition: stm32f0xx_tim.h:566
#define TIM_ICSelection_DirectTI
Definition: stm32f0xx_tim.h:560