EE445M RTOS
Taken at the University of Texas Spring 2015
|
Go to the source code of this file.
Macros | |
#define | COMP_TRIG_NONE 0x00000000 |
#define | COMP_TRIG_HIGH 0x00000880 |
#define | COMP_TRIG_LOW 0x00000800 |
#define | COMP_TRIG_FALL 0x00000820 |
#define | COMP_TRIG_RISE 0x00000840 |
#define | COMP_TRIG_BOTH 0x00000860 |
#define | COMP_INT_HIGH 0x00000010 |
#define | COMP_INT_LOW 0x00000000 |
#define | COMP_INT_FALL 0x00000004 |
#define | COMP_INT_RISE 0x00000008 |
#define | COMP_INT_BOTH 0x0000000C |
#define | COMP_ASRCP_PIN 0x00000000 |
#define | COMP_ASRCP_PIN0 0x00000200 |
#define | COMP_ASRCP_REF 0x00000400 |
#define | COMP_OUTPUT_NORMAL 0x00000000 |
#define | COMP_OUTPUT_INVERT 0x00000002 |
#define | COMP_REF_OFF 0x00000000 |
#define | COMP_REF_0V 0x00000300 |
#define | COMP_REF_0_1375V 0x00000301 |
#define | COMP_REF_0_275V 0x00000302 |
#define | COMP_REF_0_4125V 0x00000303 |
#define | COMP_REF_0_55V 0x00000304 |
#define | COMP_REF_0_6875V 0x00000305 |
#define | COMP_REF_0_825V 0x00000306 |
#define | COMP_REF_0_928125V 0x00000201 |
#define | COMP_REF_0_9625V 0x00000307 |
#define | COMP_REF_1_03125V 0x00000202 |
#define | COMP_REF_1_134375V 0x00000203 |
#define | COMP_REF_1_1V 0x00000308 |
#define | COMP_REF_1_2375V 0x00000309 |
#define | COMP_REF_1_340625V 0x00000205 |
#define | COMP_REF_1_375V 0x0000030A |
#define | COMP_REF_1_44375V 0x00000206 |
#define | COMP_REF_1_5125V 0x0000030B |
#define | COMP_REF_1_546875V 0x00000207 |
#define | COMP_REF_1_65V 0x0000030C |
#define | COMP_REF_1_753125V 0x00000209 |
#define | COMP_REF_1_7875V 0x0000030D |
#define | COMP_REF_1_85625V 0x0000020A |
#define | COMP_REF_1_925V 0x0000030E |
#define | COMP_REF_1_959375V 0x0000020B |
#define | COMP_REF_2_0625V 0x0000030F |
#define | COMP_REF_2_165625V 0x0000020D |
#define | COMP_REF_2_26875V 0x0000020E |
#define | COMP_REF_2_371875V 0x0000020F |
Functions | |
void | ComparatorConfigure (uint32_t ui32Base, uint32_t ui32Comp, uint32_t ui32Config) |
void | ComparatorRefSet (uint32_t ui32Base, uint32_t ui32Ref) |
bool | ComparatorValueGet (uint32_t ui32Base, uint32_t ui32Comp) |
void | ComparatorIntRegister (uint32_t ui32Base, uint32_t ui32Comp, void(*pfnHandler)(void)) |
void | ComparatorIntUnregister (uint32_t ui32Base, uint32_t ui32Comp) |
void | ComparatorIntEnable (uint32_t ui32Base, uint32_t ui32Comp) |
void | ComparatorIntDisable (uint32_t ui32Base, uint32_t ui32Comp) |
bool | ComparatorIntStatus (uint32_t ui32Base, uint32_t ui32Comp, bool bMasked) |
void | ComparatorIntClear (uint32_t ui32Base, uint32_t ui32Comp) |