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

Defines

#define COMP_TRIGGERMODE_NONE   (0x00000000U)
#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 282 of file stm32l4xx_hal_comp.h.

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

Definition at line 281 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 283 of file stm32l4xx_hal_comp.h.

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

Definition at line 279 of file stm32l4xx_hal_comp.h.

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

Definition at line 278 of file stm32l4xx_hal_comp.h.

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

Definition at line 280 of file stm32l4xx_hal_comp.h.

#define COMP_TRIGGERMODE_NONE   (0x00000000U)

Comparator output triggering no External Interrupt Line

Definition at line 277 of file stm32l4xx_hal_comp.h.