|
| void | AUXADCDisable (void) |
| | Disables the ADC. More...
|
| |
| void | AUXADCEnableAsync (uint32_t refSource, uint32_t trigger) |
| | Enables the ADC for asynchronous operation. More...
|
| |
| void | AUXADCEnableSync (uint32_t refSource, uint32_t sampleTime, uint32_t trigger) |
| | Enables the ADC for synchronous operation. More...
|
| |
| void | AUXADCDisableInputScaling (void) |
| | Disables scaling of the ADC input. More...
|
| |
| void | AUXADCFlushFifo (void) |
| | Flushes the ADC FIFO. More...
|
| |
| static void | AUXADCGenManualTrigger (void) |
| | Generates a single manual ADC trigger. More...
|
| |
| static uint32_t | AUXADCGetFifoStatus (void) |
| | Returns flags indicating the status of the ADC FIFO. More...
|
| |
| uint32_t | AUXADCReadFifo (void) |
| | Waits for and returns the first sample in the ADC FIFO. More...
|
| |
| uint32_t | AUXADCPopFifo (void) |
| | Returns the first sample in the ADC FIFO, without waiting. More...
|
| |
| static void | AUXADCSelectInput (uint32_t input) |
| | Selects internal or external input for the ADC. More...
|
| |
| int32_t | AUXADCGetAdjustmentGain (uint32_t refSource) |
| | Returns the gain value used when adjusting for ADC gain/offset. More...
|
| |
| int32_t | AUXADCGetAdjustmentOffset (uint32_t refSource) |
| | Returns the offset value used when adjusting for ADC gain/offset. More...
|
| |
| int32_t | AUXADCValueToMicrovolts (int32_t fixedRefVoltage, int32_t adcValue) |
| | Converts an "adjusted" ADC value to microvolts. More...
|
| |
| int32_t | AUXADCMicrovoltsToValue (int32_t fixedRefVoltage, int32_t microvolts) |
| | Converts a number of microvolts to corresponding "adjusted" ADC value. More...
|
| |
| int32_t | AUXADCAdjustValueForGainAndOffset (int32_t adcValue, int32_t gain, int32_t offset) |
| | Performs ADC value gain and offset adjustment. More...
|
| |
| int32_t | AUXADCUnadjustValueForGainAndOffset (int32_t adcValue, int32_t gain, int32_t offset) |
| | Performs the inverse of the ADC value gain and offset adjustment. More...
|
| |