![]() |
MAX32680 Peripheral Driver API
Peripheral Driver API for the MAX32680
|
Modules | |
ADC_Registers | |
Enumerations | |
enum | mxc_adc_chsel_t |
enum | mxc_adc_monitor_t |
enum | mxc_adc_scale_t |
enum | mxc_adc_ref_t |
enum mxc_adc_chsel_t |
Enumeration type for the ADC Input Channels
enum mxc_adc_monitor_t |
Enumeration type for the ADC Monitors 4 Monitors exist and can be mapped to any ADC channels
enum mxc_adc_ref_t |
Enumeration type for ADC reference sources
enum mxc_adc_scale_t |
Enumeration type for ADC Scale values Internal ADC channels automatically use the most appropriate scale
int MXC_ADC_Busy | ( | void | ) |
Checks if the ADC is busy (performing a conversion)
void MXC_ADC_ClearFlags | ( | uint32_t | flags | ) |
Performs the ADC startup procedure.
flags | mask of flags to clear |
int MXC_ADC_Convert | ( | mxc_adc_conversion_req_t * | req | ) |
Perform a conversion on a specific channel.
req | The structure containing all information for the conversion |
int MXC_ADC_ConvertAsync | ( | mxc_adc_conversion_req_t * | req | ) |
Perform a conversion on a specific channel.
req | The structure containing all information for the conversion |
void MXC_ADC_DisableComparators | ( | uint32_t | mask | ) |
Disable the Comparators.
mask | using mxc_adc_comp_t enum to create the mask of comparators to enable |
void MXC_ADC_DisableInt | ( | uint32_t | flags | ) |
Disable specific ADC interrupts.
flags | mask of interrupt flags to enables |
void MXC_ADC_DisableMonitor | ( | mxc_adc_monitor_t | monitors | ) |
Disable channel high/low monitor.
monitors | The monitor(s) to disable |
void MXC_ADC_DisableMonitorAsync | ( | mxc_adc_monitor_t | monitor | ) |
Disable a callback for a monitor.
monitor | the monitor to unregister callback for |
void MXC_ADC_EnableComparators | ( | uint32_t | mask | ) |
Enable the Comparators.
mask | using mxc_adc_comp_t enum to create the mask of comparators to enable |
void MXC_ADC_EnableInt | ( | uint32_t | flags | ) |
Enable specific ADC interrupts.
flags | mask of interrupt flags to enables |
void MXC_ADC_EnableMonitor | ( | mxc_adc_monitor_t | monitors | ) |
Enable channel high/low monitor.
monitors | The monitor(s) to enable |
void MXC_ADC_EnableMonitorAsync | ( | mxc_adc_monitor_t | monitor, |
mxc_adc_monitor_cb_t | callback | ||
) |
Set a callback to be called when a monitor goes out of range.
monitor | the monitor to register callback for |
callback | the function called when the limit is hit |
int MXC_ADC_GetConversionSpeed | ( | void | ) |
Gets the current ADC conversion speed.
int MXC_ADC_GetData | ( | uint16_t * | outdata | ) |
Gets the result from the previous ADC conversion.
outdata | Pointer to store the ADC data conversion result |
outdata
parameter int MXC_ADC_GetFlags | ( | void | ) |
Performs the ADC startup procedure.
int MXC_ADC_GetMonitorChannel | ( | mxc_adc_monitor_t | monitor | ) |
Get the channel used by a monitor.
monitor | the monitor to set the limit on |
int MXC_ADC_GetMonitorHighThreshold | ( | mxc_adc_monitor_t | monitor | ) |
Set the high limit for a specific monitor.
monitor | the monitor to set the limit on |
int MXC_ADC_GetMonitorLowThreshold | ( | mxc_adc_monitor_t | monitor | ) |
Set the low limit for a specific monitor.
monitor | the monitor to set the limit on |
int MXC_ADC_Handler | ( | void | ) |
Call this function from the ADC ISR when using Async API functions.
int MXC_ADC_Init | ( | void | ) |
Performs the ADC startup procedure.
void MXC_ADC_Monitor | ( | mxc_adc_monitor_req_t | req | ) |
Monitor a specific channel for an out of range event.
req | The structure containing all information for monitoring |
void MXC_ADC_MonitorAsync | ( | mxc_adc_monitor_req_t | req | ) |
Monitor a specific channel for an out of range event.
req | The structure containing all information for monitoring |
void MXC_ADC_RefSelect | ( | mxc_adc_ref_t | ref | ) |
Select the ADC reference source.
ref | The ADC reference to use |
int MXC_ADC_SetConversionSpeed | ( | uint32_t | hz | ) |
Sets the ADC conversion speed.
hz | Desired clock freuquency for ADC conversion. |
void MXC_ADC_SetDataAlignment | ( | int | msbJustify | ) |
Gets the current ADC conversion speed.
msbJustify | set this bit to fill the 12 most significant bits of the data registers |
void MXC_ADC_SetExtScale | ( | mxc_adc_scale_t | scale | ) |
Sets the scaling used for conversions on external channels.
scale | requested scale |
void MXC_ADC_SetMonitorChannel | ( | mxc_adc_monitor_t | monitor, |
mxc_adc_chsel_t | channel | ||
) |
Set a monitor to use a specific channel.
monitor | the monitor to set the limit on |
channel | the channel to monitor |
void MXC_ADC_SetMonitorHighThreshold | ( | mxc_adc_monitor_t | monitor, |
uint32_t | threshold | ||
) |
Set the high limit for a specific monitor.
monitor | the monitor to set the limit on |
threshold | the limit to set |
void MXC_ADC_SetMonitorLowThreshold | ( | mxc_adc_monitor_t | monitor, |
uint32_t | threshold | ||
) |
Set the low limit for a specific monitor.
monitor | the monitor to set the limit on |
threshold | the limit to set |
int MXC_ADC_Shutdown | ( | void | ) |
Shuts down the ADC.
int MXC_ADC_StartConversion | ( | mxc_adc_chsel_t | channel | ) |
Perform a conversion on a specific channel.
channel | the channel to perform the conversion on |
int MXC_ADC_StartConversionAsync | ( | mxc_adc_chsel_t | channel, |
mxc_adc_complete_cb_t | callback | ||
) |
Perform a conversion on a specific channel.
channel | the channel to perform the conversion on |
callback | the function to call when the conversion is complete |