![]() |
RZN Flexible Software Package Documentation
Release v2.1.0
|
|
Interface for A/D Converters.
The ADC interface provides standard ADC functionality including one-shot mode (single scan), continuous scan and group scan. It also allows configuration of hardware and software triggers for starting scans. After each conversion an interrupt can be triggered, and if a callback function is provided, the call back is invoked with the appropriate event information.
Data Structures | |
struct | adc_status_t |
struct | adc_callback_args_t |
struct | adc_info_t |
struct | adc_cfg_t |
struct | adc_api_t |
struct | adc_instance_t |
Typedefs | |
typedef void | adc_ctrl_t |
Enumerations | |
enum | adc_mode_t |
enum | adc_resolution_t |
enum | adc_alignment_t |
enum | adc_trigger_t |
enum | adc_event_t |
enum | adc_channel_t |
enum | adc_group_id_t |
enum | adc_group_mask_t |
enum | adc_state_t |
struct adc_status_t |
ADC status.
Data Fields | ||
---|---|---|
adc_state_t | state | Current state. |
struct adc_callback_args_t |
ADC callback arguments definitions
Data Fields | ||
---|---|---|
uint16_t | unit | ADC device in use. |
adc_event_t | event | ADC callback event. |
void const * | p_context | Placeholder for user data. |
adc_channel_t | channel | Channel of conversion result. |
uint64_t | channel_mask | Channel mask for conversion result. Only valid for r_adc_b and r_sdadc_b. |
adc_group_mask_t | group_mask | Group Mask. |
struct adc_info_t |
ADC Information Structure for Transfer Interface
Data Fields | ||
---|---|---|
__I void * | p_address | The address to start reading the data from. |
uint32_t | length | The total number of transfers to read. |
transfer_size_t | transfer_size | The size of each transfer. |
elc_peripheral_t | elc_peripheral | Name of the peripheral in the ELC list. |
elc_event_t | elc_event | Name of the ELC event for the peripheral. |
uint32_t | calibration_data | Temperature sensor calibration data (0xFFFFFFFF if unsupported) for reference voltage. |
int16_t | slope_microvolts | Temperature sensor slope in microvolts/degrees C. |
bool | calibration_ongoing | Calibration is in progress. |
volatile const void * | p_address | The address to start reading the data from. |
uint32_t | calibration_data1 | Temperature sensor calibration data1. |
uint32_t | calibration_data2 | Temperature sensor calibration data2. |
struct adc_cfg_t |
ADC general configuration
Data Fields | |
uint16_t | unit |
ADC unit to be used. | |
adc_mode_t | mode |
ADC operation mode. | |
adc_resolution_t | resolution |
ADC resolution. | |
adc_alignment_t | alignment |
Specify left or right alignment; ignored if addition used. | |
adc_trigger_t | trigger |
Default and Group A trigger source. | |
IRQn_Type | scan_end_irq |
Scan end IRQ number. | |
IRQn_Type | scan_end_b_irq |
Scan end group B IRQ number. | |
IRQn_Type | scan_end_c_irq |
Scan end group C IRQ number. | |
uint8_t | scan_end_ipl |
Scan end interrupt priority. | |
uint8_t | scan_end_b_ipl |
Scan end group B interrupt priority. | |
uint8_t | scan_end_c_ipl |
Scan end group C interrupt priority. | |
void(* | p_callback )(adc_callback_args_t *p_args) |
Callback function; set to NULL for none. | |
void const * | p_context |
Placeholder for user data. Passed to the user callback in adc_callback_args_t. | |
void const * | p_extend |
Extension parameter for hardware specific settings. | |
struct adc_api_t |
ADC functions implemented at the HAL layer will follow this API.
Data Fields | |
fsp_err_t(* | open )(adc_ctrl_t *const p_ctrl, adc_cfg_t const *const p_cfg) |
fsp_err_t(* | scanCfg )(adc_ctrl_t *const p_ctrl, void const *const p_extend) |
fsp_err_t(* | scanStart )(adc_ctrl_t *const p_ctrl) |
fsp_err_t(* | scanGroupStart )(adc_ctrl_t *p_ctrl, adc_group_mask_t group_mask) |
fsp_err_t(* | scanStop )(adc_ctrl_t *const p_ctrl) |
fsp_err_t(* | scanStatusGet )(adc_ctrl_t *const p_ctrl, adc_status_t *p_status) |
fsp_err_t(* | read )(adc_ctrl_t *const p_ctrl, adc_channel_t const reg_id, uint16_t *const p_data) |
fsp_err_t(* | read32 )(adc_ctrl_t *const p_ctrl, adc_channel_t const reg_id, uint32_t *const p_data) |
fsp_err_t(* | calibrate )(adc_ctrl_t *const p_ctrl, void const *p_extend) |
fsp_err_t(* | offsetSet )(adc_ctrl_t *const p_ctrl, adc_channel_t const reg_id, int32_t const offset) |
fsp_err_t(* | callbackSet )(adc_ctrl_t *const p_ctrl, void(*p_callback)(adc_callback_args_t *), void const *const p_context, adc_callback_args_t *const p_callback_memory) |
fsp_err_t(* | close )(adc_ctrl_t *const p_ctrl) |
fsp_err_t(* | infoGet )(adc_ctrl_t *const p_ctrl, adc_info_t *const p_adc_info) |
fsp_err_t(* adc_api_t::open) (adc_ctrl_t *const p_ctrl, adc_cfg_t const *const p_cfg) |
Initialize ADC Unit; apply power, set the operational mode, trigger sources, interrupt priority, and configurations common to all channels and sensors.
[in] | p_ctrl | Pointer to control handle structure |
[in] | p_cfg | Pointer to configuration structure |
fsp_err_t(* adc_api_t::scanCfg) (adc_ctrl_t *const p_ctrl, void const *const p_extend) |
Configure the scan including the channels, groups, and scan triggers to be used for the unit that was initialized in the open call. Some configurations are not supported for all implementations. See implementation for details.
[in] | p_ctrl | Pointer to control handle structure |
[in] | p_extend | See implementation for details |
fsp_err_t(* adc_api_t::scanStart) (adc_ctrl_t *const p_ctrl) |
Start the scan (in case of a software trigger), or enable the hardware trigger.
[in] | p_ctrl | Pointer to control handle structure |
fsp_err_t(* adc_api_t::scanGroupStart) (adc_ctrl_t *p_ctrl, adc_group_mask_t group_mask) |
Start the scan group (in case of a software trigger), or enable the hardware trigger.
[in] | p_ctrl | Pointer to control handle structure |
[in] | group_mask | Mask of groups to start |
fsp_err_t(* adc_api_t::scanStop) (adc_ctrl_t *const p_ctrl) |
Stop the ADC scan (in case of a software trigger), or disable the hardware trigger.
[in] | p_ctrl | Pointer to control handle structure |
fsp_err_t(* adc_api_t::scanStatusGet) (adc_ctrl_t *const p_ctrl, adc_status_t *p_status) |
Check scan status.
[in] | p_ctrl | Pointer to control handle structure |
[out] | p_status | Pointer to store current status in |
fsp_err_t(* adc_api_t::read) (adc_ctrl_t *const p_ctrl, adc_channel_t const reg_id, uint16_t *const p_data) |
Read ADC conversion result.
[in] | p_ctrl | Pointer to control handle structure |
[in] | reg_id | ADC channel to read (see enumeration adc_channel_t) |
[in] | p_data | Pointer to variable to load value into. |
fsp_err_t(* adc_api_t::read32) (adc_ctrl_t *const p_ctrl, adc_channel_t const reg_id, uint32_t *const p_data) |
Read ADC conversion result into a 32-bit word.
[in] | p_ctrl | Pointer to control handle structure |
[in] | reg_id | ADC channel to read (see enumeration adc_channel_t) |
[in] | p_data | Pointer to variable to load value into. |
fsp_err_t(* adc_api_t::calibrate) (adc_ctrl_t *const p_ctrl, void const *p_extend) |
Calibrate ADC or associated PGA (programmable gain amplifier). The driver may require implementation specific arguments to the p_extend input. Not supported for all implementations. See implementation for details.
[in] | p_ctrl | Pointer to control handle structure |
[in] | p_extend | Pointer to implementation specific arguments |
fsp_err_t(* adc_api_t::offsetSet) (adc_ctrl_t *const p_ctrl, adc_channel_t const reg_id, int32_t const offset) |
Set offset for input PGA configured for differential input. Not supported for all implementations. See implementation for details.
[in] | p_ctrl | Pointer to control handle structure |
[in] | reg_id | ADC channel to read (see enumeration adc_channel_t) |
[in] | offset | See implementation for details. |
fsp_err_t(* adc_api_t::callbackSet) (adc_ctrl_t *const p_ctrl, void(*p_callback)(adc_callback_args_t *), void const *const p_context, adc_callback_args_t *const p_callback_memory) |
Specify callback function and optional context pointer and working memory pointer.
[in] | p_ctrl | Pointer to the ADC control block. |
[in] | p_callback | Callback function |
[in] | p_context | Pointer to send to callback function |
[in] | p_working_memory | Pointer to volatile memory where callback structure can be allocated. Callback arguments allocated here are only valid during the callback. |
fsp_err_t(* adc_api_t::close) (adc_ctrl_t *const p_ctrl) |
Close the specified ADC unit by ending any scan in progress, disabling interrupts, and removing power to the specified A/D unit.
[in] | p_ctrl | Pointer to control handle structure |
fsp_err_t(* adc_api_t::infoGet) (adc_ctrl_t *const p_ctrl, adc_info_t *const p_adc_info) |
Return the ADC data register address of the first (lowest number) channel and the total number of bytes to be read in order for the DTC/DMAC to read the conversion results of all configured channels. Return the temperature sensor calibration and slope data.
[in] | p_ctrl | Pointer to control handle structure |
[out] | p_adc_info | Pointer to ADC information structure |
struct adc_instance_t |
This structure encompasses everything that is needed to use an instance of this interface.
Data Fields | ||
---|---|---|
adc_ctrl_t * | p_ctrl | Pointer to the control structure for this instance. |
adc_cfg_t const * | p_cfg | Pointer to the configuration structure for this instance. |
void const * | p_channel_cfg | Pointer to the channel configuration structure for this instance. |
adc_api_t const * | p_api | Pointer to the API structure for this instance. |
typedef void adc_ctrl_t |
ADC control block. Allocate using driver instance control structure from driver instance header file.
enum adc_mode_t |
enum adc_resolution_t |
enum adc_alignment_t |
enum adc_trigger_t |
enum adc_event_t |
ADC callback event definitions
enum adc_channel_t |
ADC channels
enum adc_group_id_t |
enum adc_group_mask_t |
enum adc_state_t |