no-OS
|
Header file of ADC Demo Driver. More...
Go to the source code of this file.
Classes | |
struct | adc_demo_desc |
struct | adc_demo_init_param |
Macros | |
#define | MAX_ADC_ADDR 16 |
#define | TOTAL_ADC_CHANNELS 2 |
Enumerations | |
enum | iio_adc_demo_attributes { ADC_CHANNEL_ATTR, ADC_GLOBAL_ATTR } |
Functions | |
int32_t | adc_demo_init (struct adc_demo_desc **desc, struct adc_demo_init_param *param) |
init function for the adc demo driver More... | |
int32_t | adc_demo_remove (struct adc_demo_desc *desc) |
free allocated resources More... | |
int32_t | update_adc_channels (void *dev, uint32_t mask) |
active adc channels More... | |
int32_t | close_adc_channels (void *dev) |
close all channels More... | |
int32_t | adc_submit_samples (struct iio_device_data *dev_data) |
function for reading samples from the device. More... | |
int32_t | adc_demo_reg_read (struct adc_demo_desc *desc, uint8_t reg_index, uint8_t *readval) |
read function for the adc demo driver More... | |
int32_t | adc_demo_reg_write (struct adc_demo_desc *desc, uint8_t reg_index, uint8_t writeval) |
write function for the adc demo driver More... | |
int32_t | adc_demo_trigger_handler (struct iio_device_data *dev_data) |
Handles trigger: reads one data-set and writes it to the buffer. More... | |
Variables | |
const uint16_t | sine_lut [128] |
Header file of ADC Demo Driver.
Copyright 2021(c) Analog Devices, Inc.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES, INC. “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ANALOG DEVICES, INC. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#define MAX_ADC_ADDR 16 |
#define TOTAL_ADC_CHANNELS 2 |
int32_t adc_demo_init | ( | struct adc_demo_desc ** | desc, |
struct adc_demo_init_param * | param | ||
) |
init function for the adc demo driver
desc | - descriptor for the adc |
param | - initialization param for adc |
int32_t adc_demo_reg_read | ( | struct adc_demo_desc * | desc, |
uint8_t | reg_index, | ||
uint8_t * | readval | ||
) |
read function for the adc demo driver
desc | - descriptor for the adc |
reg_index | - the address at which we want to read |
readval- | the value read from register |
int32_t adc_demo_reg_write | ( | struct adc_demo_desc * | desc, |
uint8_t | reg_index, | ||
uint8_t | writeval | ||
) |
write function for the adc demo driver
desc | - descriptor for the adc |
reg_index | - the address at which we want to write |
writeval | - the value to be written |
int32_t adc_demo_remove | ( | struct adc_demo_desc * | desc | ) |
free allocated resources
desc | - descriptor for the adc |
int32_t adc_demo_trigger_handler | ( | struct iio_device_data * | dev_data | ) |
Handles trigger: reads one data-set and writes it to the buffer.
dev_data | - The iio device data structure. |
int32_t adc_submit_samples | ( | struct iio_device_data * | dev_data | ) |
function for reading samples from the device.
dev_data | - The iio device data structure. |
int32_t close_adc_channels | ( | void * | dev | ) |
close all channels
dev | - physical instance of an adc device |
int32_t update_adc_channels | ( | void * | dev, |
uint32_t | mask | ||
) |
active adc channels
dev | - descriptor for the adc |
mask | - active channels mask |
const uint16_t sine_lut[128] |