1.11.1.33 ADCHS_CMP_EVENT_MODE Enum

C

typedef enum
{
    // Comparator event is generated when ADC value is lower than comparator lower threshold
    ADCHS_CMP_EVENT_MODE_IELOLO = 0x01,
    // Comparator event is generated when ADC value is higher than or equal to comparator lower threshold
    ADCHS_CMP_EVENT_MODE_IELOHI = 0x02,
    // Comparator event is generated when ADC value is lower than comparator higher threshold
    ADCHS_CMP_EVENT_MODE_IEHILO = 0x04,
    // Comparator event is generated when ADC value is higher than or equal to comparator higher threshold
    ADCHS_CMP_EVENT_MODE_IEHIHI = 0x08,
    // Comparator event is generated when ADC value is between the comparator lower and higher threshold
    ADCHS_CMP_EVENT_MODE_IEBTWN = 0x10,
    
}ADCHS_CMP_EVENT_MODE;

Summary

Identifies ADCHS comparator event modes

Description

This enumeration identifies ADCHS event modes. This may be used with the ADCHS_Comparator1EventModeSet() API to set the event mode.

Remarks

None.