1.37.1.9 AC_CHANNEL Enum
C
typedef enum { /* Comparator channel 0 */ AC_CHANNEL_0 = 0, /* Comparator channel 1*/ AC_CHANNEL_1 = 1, /* Comparator channel 2*/ AC_CHANNEL_2 = 2, /* Comparator channel 3*/ AC_CHANNEL_3 = 3 } AC_CHANNEL;
Summary
Identifies the AC output channel number
Description
This enumeration can be used as an argument to APIs where it needs to indicate a specific comparator. For example, it is used as below,
AC_Start(AC_CHANNEL_0);
Remarks
None.