no-OS
|
Header file for pulsar_adc Driver. More...
#include <stdbool.h>
#include "spi_engine.h"
#include "clk_axi_clkgen.h"
#include "no_os_pwm.h"
#include "no_os_gpio.h"
Go to the source code of this file.
Classes | |
struct | pulsar_adc_dev_info |
struct | pulsar_adc_dev |
struct | pulsar_adc_init_param |
Macros | |
#define | PULSAR_ADC_READ_COMMAND 0x54 |
#define | PULSAR_ADC_WRITE_COMMAND 0x14 |
#define | PULSAR_ADC_RESERVED_MSK 0xE0 |
#define | PULSAR_ADC_TURBO_MODE(x) (((x) & 0x1) << 1) |
#define | PULSAR_ADC_HIGH_Z_MODE(x) (((x) & 0x1) << 2) |
#define | PULSAR_ADC_SPAN_COMPRESSION(x) (((x) & 0x1) << 3) |
#define | PULSAR_ADC_EN_STATUS_BITS(x) (((x) & 0x1) << 4) |
Enumerations | |
enum | pulsar_adc_supported_dev_ids { ID_AD4000, ID_AD4001, ID_AD4002, ID_AD4003, ID_AD4004, ID_AD4005, ID_AD4006, ID_AD4007, ID_AD4008, ID_AD4010, ID_AD4011, ID_AD4020, ID_AD4021, ID_AD4022, ID_ADAQ4003, ID_AD7690, ID_AD7691, ID_AD7693, ID_AD7942, ID_AD7944, ID_AD7946, ID_AD7980, ID_AD7982, ID_AD7983, ID_AD7984, ID_AD7985, ID_AD7986 } |
Functions | |
int32_t | pulsar_adc_spi_reg_read (struct pulsar_adc_dev *dev, uint8_t *reg_data) |
int32_t | pulsar_adc_spi_reg_write (struct pulsar_adc_dev *dev, uint8_t reg_data) |
int32_t | pulsar_adc_init (struct pulsar_adc_dev **device, struct pulsar_adc_init_param *init_param) |
int32_t | pulsar_adc_remove (struct pulsar_adc_dev *dev) |
Free the resources allocated by pulsar_adc_init(). More... | |
int32_t | pulsar_adc_read_data (struct pulsar_adc_dev *dev, uint32_t *buf, uint16_t samples) |
Header file for pulsar_adc Driver.
Copyright 2018(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 PULSAR_ADC_EN_STATUS_BITS | ( | x | ) | (((x) & 0x1) << 4) |
#define PULSAR_ADC_HIGH_Z_MODE | ( | x | ) | (((x) & 0x1) << 2) |
#define PULSAR_ADC_READ_COMMAND 0x54 |
#define PULSAR_ADC_RESERVED_MSK 0xE0 |
#define PULSAR_ADC_SPAN_COMPRESSION | ( | x | ) | (((x) & 0x1) << 3) |
#define PULSAR_ADC_TURBO_MODE | ( | x | ) | (((x) & 0x1) << 1) |
#define PULSAR_ADC_WRITE_COMMAND 0x14 |
int32_t pulsar_adc_init | ( | struct pulsar_adc_dev ** | device, |
struct pulsar_adc_init_param * | init_param | ||
) |
Initialize the device.
device | - The device structure. |
init_param | - The structure that contains the device initial parameters. |
int32_t pulsar_adc_read_data | ( | struct pulsar_adc_dev * | dev, |
uint32_t * | buf, | ||
uint16_t | samples | ||
) |
Read conversion results from device.
dev | - The device structure. |
buf | - Buffer to hold the conversion results data |
samples | - number of samples to read |
int32_t pulsar_adc_remove | ( | struct pulsar_adc_dev * | dev | ) |
Free the resources allocated by pulsar_adc_init().
dev | - The device structure. |
int32_t pulsar_adc_spi_reg_read | ( | struct pulsar_adc_dev * | dev, |
uint8_t * | reg_data | ||
) |
Read from device.
dev | - The device structure. |
reg_data | - The register data. |
int32_t pulsar_adc_spi_reg_write | ( | struct pulsar_adc_dev * | dev, |
uint8_t | reg_data | ||
) |
Write to device.
dev | - The device structure. |
reg_data | - The register data. |