STM32L443xx HAL User Manual
Defines
COMP output to EXTI
COMP Exported Constants

Defines

#define COMP_TRIGGERMODE_NONE   (0x00000000UL)
#define COMP_TRIGGERMODE_IT_RISING   (COMP_EXTI_IT | COMP_EXTI_RISING)
#define COMP_TRIGGERMODE_IT_FALLING   (COMP_EXTI_IT | COMP_EXTI_FALLING)
#define COMP_TRIGGERMODE_IT_RISING_FALLING   (COMP_EXTI_IT | COMP_EXTI_RISING | COMP_EXTI_FALLING)
#define COMP_TRIGGERMODE_EVENT_RISING   (COMP_EXTI_EVENT | COMP_EXTI_RISING)
#define COMP_TRIGGERMODE_EVENT_FALLING   (COMP_EXTI_EVENT | COMP_EXTI_FALLING)
#define COMP_TRIGGERMODE_EVENT_RISING_FALLING   (COMP_EXTI_EVENT | COMP_EXTI_RISING | COMP_EXTI_FALLING)

Define Documentation

Comparator output triggering External Interrupt Line event only (without interruption), on falling edge

Definition at line 273 of file stm32l4xx_hal_comp.h.

Comparator output triggering External Interrupt Line event only (without interruption), on rising edge

Definition at line 272 of file stm32l4xx_hal_comp.h.

Comparator output triggering External Interrupt Line event only (without interruption), on both rising and falling edges

Definition at line 274 of file stm32l4xx_hal_comp.h.

Comparator output triggering External Interrupt Line event with interruption, on falling edge

Definition at line 270 of file stm32l4xx_hal_comp.h.

Comparator output triggering External Interrupt Line event with interruption, on rising edge

Definition at line 269 of file stm32l4xx_hal_comp.h.

Comparator output triggering External Interrupt Line event with interruption, on both rising and falling edges

Definition at line 271 of file stm32l4xx_hal_comp.h.

#define COMP_TRIGGERMODE_NONE   (0x00000000UL)

Comparator output triggering no External Interrupt Line

Definition at line 268 of file stm32l4xx_hal_comp.h.