libopencm3
A free/libre/open-source firmware library for various ARM Cortex-M3 microcontrollers.
EXTEN: External trigger enable and polarity selection for regular channels
Collaboration diagram for EXTEN: External trigger enable and polarity selection for regular channels:

Macros

#define ADC_CFGR1_EXTEN_DISABLED   (0x0 << 10)
 
#define ADC_CFGR1_EXTEN_RISING_EDGE   (0x1 << 10)
 
#define ADC_CFGR1_EXTEN_FALLING_EDGE   (0x2 << 10)
 
#define ADC_CFGR1_EXTEN_BOTH_EDGES   (0x3 << 10)
 

Detailed Description

Macro Definition Documentation

◆ ADC_CFGR1_EXTEN_BOTH_EDGES

#define ADC_CFGR1_EXTEN_BOTH_EDGES   (0x3 << 10)

Definition at line 150 of file adc_common_v2.h.

◆ ADC_CFGR1_EXTEN_DISABLED

#define ADC_CFGR1_EXTEN_DISABLED   (0x0 << 10)

Definition at line 147 of file adc_common_v2.h.

◆ ADC_CFGR1_EXTEN_FALLING_EDGE

#define ADC_CFGR1_EXTEN_FALLING_EDGE   (0x2 << 10)

Definition at line 149 of file adc_common_v2.h.

◆ ADC_CFGR1_EXTEN_RISING_EDGE

#define ADC_CFGR1_EXTEN_RISING_EDGE   (0x1 << 10)

Definition at line 148 of file adc_common_v2.h.