![]() |
MAX32665 Peripheral Driver API
Peripheral Driver API for the MAX32665
|
Modules | |
ADC_Registers | |
Data Structures | |
struct | mxc_adc_monitor_req_t |
struct | mxc_adc_conversion_req_t |
Macros | |
#define | MXC_V_ADC_CTRL_ADC_CHSEL_AIN0 ((uint32_t)(0x00000000UL)) |
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 |
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_DisableInt | ( | uint32_t | flags | ) |
Disable specific ADC interrupts.
flags | mask of interrupt flags to enables |
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 | ) |
Enable specific ADC interrupts.
flags | mask of interrupt flags to enables |
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 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 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 | ) |
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 |
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 | 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 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 | ) |
Perform a conversion on a specific channel.
channel | the channel to perform the conversion on or 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, |
mxc_dma_regs_t * | dma, | ||
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 |
dma | Pointer to DMA registers |
data | return rax adc data |
callback | DMA complete callback |