Implementation of ADA4250 Driver. More...
#include <stdlib.h>
#include "ada4250.h"
#include "no_os_delay.h"
#include "no_os_error.h"
#include "no_os_alloc.h"
Functions | |
int32_t | ada4250_write (struct ada4250_dev *dev, uint8_t reg_addr, uint8_t data) |
Writes data to ada4250 over SPI. | |
int32_t | ada4250_read (struct ada4250_dev *dev, uint8_t reg_addr, uint8_t *data) |
Reads data from ada4250 over SPI. | |
int32_t | ada4250_update (struct ada4250_dev *dev, uint8_t reg_addr, uint8_t mask, uint8_t data) |
Update ADA4250 register. | |
int32_t | ada4250_update_desc (struct ada4250_dev *dev) |
Update ADA4250 device descriptor. | |
int32_t | ada4250_soft_reset (struct ada4250_dev *dev) |
Software reset. | |
int32_t | ada4250_en_refbuf (struct ada4250_dev *dev, bool refbuf) |
Enable/Disable Reference Buffer. | |
int32_t | ada4250_set_bias (struct ada4250_dev *dev, enum ada4250_bias bias) |
Set current bias for ADA4250. | |
int32_t | ada4250_set_gain (struct ada4250_dev *dev, enum ada4250_gain gain) |
Set gain for ADA4250. | |
int32_t | ada4250_set_offset (struct ada4250_dev *dev, int64_t offset) |
Set offset value for ADA4250. | |
int32_t | ada4250_set_bandwidth (struct ada4250_dev *dev, enum ada4250_bandwidth bw) |
Set the bandwidth value for ADA4250. | |
int32_t | ada4250_set_slp_shtdwn_mode (struct ada4250_dev *dev, enum ada4250_power_mode pwrmode) |
Set the ADA4250 into sleep or shutdown mode. | |
int32_t | ada4250_set_normal_mode (struct ada4250_dev *dev, bool reconfig) |
Sets the ADA4250 into normal mode and reconfigures it according to the user input. | |
int32_t | ada4250_init (struct ada4250_dev **device, struct ada4250_init_param *init_param) |
Initialize the ADA4250 device. | |
int32_t | ada4250_remove (struct ada4250_dev *dev) |
Free resoulces allocated for ADA4250. | |
Implementation of ADA4250 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.
int32_t ada4250_en_refbuf | ( | struct ada4250_dev * | dev, |
bool | refbuf ) |
Enable/Disable Reference Buffer.
dev | - The device structure. |
refbuf | - REFBUF enable/disable. |
int32_t ada4250_init | ( | struct ada4250_dev ** | device, |
struct ada4250_init_param * | init_param ) |
Initialize the ADA4250 device.
device | - The device structure. |
init_param | - The structure containing the device initial parameters. |
int32_t ada4250_read | ( | struct ada4250_dev * | dev, |
uint8_t | reg_addr, | ||
uint8_t * | data ) |
Reads data from ada4250 over SPI.
dev | - The device structure. |
reg_addr | - The register address. |
data | - Data read from the device. |
int32_t ada4250_remove | ( | struct ada4250_dev * | dev | ) |
Free resoulces allocated for ADA4250.
dev | - The device structure. |
int32_t ada4250_set_bandwidth | ( | struct ada4250_dev * | dev, |
enum ada4250_bandwidth | bw ) |
Set the bandwidth value for ADA4250.
dev | - The device structure. |
bw | - Bandwidth value. |
int32_t ada4250_set_bias | ( | struct ada4250_dev * | dev, |
enum ada4250_bias | bias ) |
Set current bias for ADA4250.
dev | - The device structure. |
bias | - Current bias option. |
int32_t ada4250_set_gain | ( | struct ada4250_dev * | dev, |
enum ada4250_gain | gain ) |
Set gain for ADA4250.
dev | - The device structure. |
gain | - Gain Value. |
int32_t ada4250_set_normal_mode | ( | struct ada4250_dev * | dev, |
bool | reconfig ) |
Sets the ADA4250 into normal mode and reconfigures it according to the user input.
dev | - The device structure. |
reconfig | - Reconfiguration enable/disable. |
int32_t ada4250_set_offset | ( | struct ada4250_dev * | dev, |
int64_t | offset ) |
Set offset value for ADA4250.
dev | - The device structure. |
offset | - Offset Value in nV. |
int32_t ada4250_set_slp_shtdwn_mode | ( | struct ada4250_dev * | dev, |
enum ada4250_power_mode | pwrmode ) |
Set the ADA4250 into sleep or shutdown mode.
dev | - The device structure. |
pwrmode | - Power mode option. |
int32_t ada4250_soft_reset | ( | struct ada4250_dev * | dev | ) |
Software reset.
dev | - The device structure. |
int32_t ada4250_update | ( | struct ada4250_dev * | dev, |
uint8_t | reg_addr, | ||
uint8_t | mask, | ||
uint8_t | data ) |
Update ADA4250 register.
dev | - The device structure. |
reg_addr | - The register address. |
mask | - Mask for specific register bits to be updated. |
data | - Data read from the device. |
int32_t ada4250_update_desc | ( | struct ada4250_dev * | dev | ) |
Update ADA4250 device descriptor.
dev | - The device structure. |
int32_t ada4250_write | ( | struct ada4250_dev * | dev, |
uint8_t | reg_addr, | ||
uint8_t | data ) |
Writes data to ada4250 over SPI.
dev | - The device structure. |
reg_addr | - The register address. |
data | - Data value to write. |