![]() |
MAX32650 Peripheral Driver API
Peripheral Driver API for the MAX32650
|
Modules | |
ADC_Registers | |
Data Structures | |
struct | mxc_adc_monitor_req_t |
struct | mxc_adc_conversion_req_t |
Typedefs | |
typedef void(* | mxc_adc_complete_cb_t) (void *req, int error) |
typedef void(* | mxc_adc_monitor_cb_t) (void *req, int error) |
Enumerations | |
enum | mxc_adc_chsel_t |
enum | mxc_adc_monitor_t |
enum | mxc_adc_scale_t |
struct mxc_adc_monitor_req_t |
Used to set up a monitor to watch a channel.
Data Fields | |
mxc_adc_monitor_t | monitor |
mxc_adc_scale_t | scale |
mxc_adc_chsel_t | channel |
int | lowThreshold |
int | highThreshold |
mxc_adc_monitor_cb_t | callback |
struct mxc_adc_conversion_req_t |
Used to set up channel for conversion.
Data Fields | |
mxc_adc_chsel_t | channel |
mxc_adc_scale_t | scale |
int | rawADCValue |
mxc_adc_complete_cb_t | callback |
enum mxc_adc_chsel_t |
Enumeration type for the ADC Input Channels
enum mxc_adc_scale_t |
int MXC_ADC_Busy | ( | void | ) |
Checks if the ADC is busy (performing a conversion)
void MXC_ADC_ClearFlags | ( | uint32_t | flags | ) |
Clear interrupt flag(s) using the mask parameter. All bits set in the parameter will be cleared.
flags | Interrupt flags to clear. See the ADC_INTR Register for the interrupt flag masks |
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_DisableInt | ( | uint32_t | flags | ) |
Disable ADC interrupts based on mask.
flags | ADC interrupts to disable. See ADC_INTR Register for the interrupt enable bit masks. |
void MXC_ADC_DisableMonitor | ( | mxc_adc_monitor_t | monitor | ) |
Disable channel high/low monitor.
monitor | The monitor to disable or mxc_adc_monitor_t |
void MXC_ADC_DisableMonitorAsync | ( | mxc_adc_monitor_t | monitor | ) |
Disable a callback for a monitor.
monitor | the monitor to unregister callback for or mxc_adc_monitor_t |
void MXC_ADC_EnableInt | ( | uint32_t | flags | ) |
Enables the ADC interrupts specified by the mask parameter.
flags | ADC interrupts to enable. See ADC_INTR Register for the interrupt enable bit masks. |
void MXC_ADC_EnableMonitor | ( | mxc_adc_monitor_t | monitor | ) |
Enable channel high/low monitor.
monitor | The monitor to enable or mxc_adc_monitor_t |
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 or mxc_adc_monitor_t |
callback | the function called when the limit is hit or mxc_adc_monitor_cb_t |
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 uint32_t MXC_ADC_GetFlags | ( | void | ) |
Get interrupt flags.
int MXC_ADC_GetMonitorChannel | ( | mxc_adc_monitor_t | monitor | ) |
Get the channel used by a monitor.
monitor | the monitor to set the limit on or mxc_adc_monitor_t |
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 or mxc_adc_monitor_t |
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 or mxc_adc_monitor_t |
int MXC_ADC_Handler | ( | void | ) |
Call this function from the ADC ISR when using Async API functions.
int MXC_ADC_Init | ( | void | ) |
Initialize the ADC hardware.
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 |
int MXC_ADC_SetConversionSpeed | ( | uint32_t | hz | ) |
Sets the ADC conversion speed.
hz | conversion frequency |
void MXC_ADC_SetDataAlignment | ( | int | msbJustify | ) |
Set the data alignment.
msbJustify | Setting this to a non-zero number will fill the 12 most significant bits of the data registers. Otherwise, the 12 Least significant bits will be filled. |
void MXC_ADC_SetExtScale | ( | mxc_adc_scale_t | scale | ) |
Sets the scaling used for conversions on external channels.
scale | requested scale or mxc_adc_scale_t |
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 or mxc_adc_monitor_t |
channel | the channel to monitor or mxc_adc_chsel_t |
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 or mxc_adc_monitor_t |
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 or mxc_adc_monitor_t |
threshold | the limit to set |
int MXC_ADC_Shutdown | ( | void | ) |
Shuts down the ADC.
int MXC_ADC_StartConversion | ( | mxc_adc_chsel_t | channel | ) |
Start ADC conversion on the selected channel.
channel | Channel select from mxc_adc_chsel_t |
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 or mxc_adc_chsel_t |
callback | the function to call when the conversion is complete |
int MXC_ADC_StartConversionDMA | ( | mxc_adc_chsel_t | channel, |
uint16_t * | data, | ||
void(*)(int, int) | callback | ||
) |
Perform a conversion on a specific channel.
channel | the channel to perform the conversion on or mxc_adc_chsel_t |
data | return rax adc data |
callback | DMA complete callback |