Implementation of ad7091r5 Driver. More...
#include "ad7091r5.h"
#include <string.h>
#include <errno.h>
#include "stdlib.h"
#include "no_os_error.h"
#include "no_os_delay.h"
#include "no_os_util.h"
#include "no_os_alloc.h"
Functions | |
int32_t | ad7091r5_i2c_reg_read (struct ad7091r5_dev *dev, uint8_t reg_addr, uint16_t *reg_data) |
int32_t | ad7091r5_i2c_reg_write (struct ad7091r5_dev *dev, uint8_t reg_addr, uint16_t reg_data) |
int32_t | ad7091r5_i2c_read_mask (struct ad7091r5_dev *dev, uint8_t reg_addr, uint8_t mask, uint16_t *data) |
int32_t | ad7091r5_i2c_write_mask (struct ad7091r5_dev *dev, uint8_t reg_addr, uint16_t mask, uint16_t data) |
int32_t | ad7091r5_sleep_mode (struct ad7091r5_dev *dev, enum ad7091r5_sleep_mode mode) |
int32_t | ad7091r5_set_port (struct ad7091r5_dev *dev, enum ad7091r5_port port, bool value) |
int32_t | ad7091r5_set_gpo0_mode (struct ad7091r5_dev *dev, enum ad7091r5_gpo0_mode mode, bool is_cmos) |
int32_t | ad7091r5_set_cycle_timer (struct ad7091r5_dev *dev, enum ad7091r5_cycle_timer timer) |
int32_t | ad7091r5_get_alert (struct ad7091r5_dev *dev, uint8_t channel, enum ad7091r5_alert_type *alert) |
int32_t | ad7091r5_set_limit (struct ad7091r5_dev *dev, enum ad7091r5_limit limit, uint8_t channel, uint16_t value) |
int32_t | ad7091r5_get_limit (struct ad7091r5_dev *dev, enum ad7091r5_limit limit, uint8_t channel, uint16_t *value) |
int32_t | ad7091r5_set_mode (struct ad7091r5_dev *dev, enum ad7091r5_mode mode) |
int32_t | ad7091r5_set_channel (struct ad7091r5_dev *dev, uint8_t channel) |
int32_t | ad7091r5_reset (struct ad7091r5_dev *dev, bool is_software) |
Initialize GPIO driver handlers for the GPIOs in the system. ad7091r5_init() helper function. | |
int32_t | ad7091r5_read_one (struct ad7091r5_dev *dev, uint8_t channel, uint16_t *read_val) |
int32_t | ad7091r5_init (struct ad7091r5_dev **device, struct ad7091r5_init_param *init_param) |
int32_t | ad7091r5_remove (struct ad7091r5_dev *dev) |
Free the memory allocated by ad7091r5_init(). | |
Implementation of ad7091r5 Driver.
Copyright 2020(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 ad7091r5_get_alert | ( | struct ad7091r5_dev * | dev, |
uint8_t | channel, | ||
enum ad7091r5_alert_type * | alert ) |
Get alert.
dev | - The device structure. |
channel | - Channel. |
alert | - Alert type. |
int32_t ad7091r5_get_limit | ( | struct ad7091r5_dev * | dev, |
enum ad7091r5_limit | limit, | ||
uint8_t | channel, | ||
uint16_t * | value ) |
Get high limit, low limit, hysteresis.
dev | - The device structure. |
limit | - Limit. |
channel | - Channel. |
value | - Value. |
int32_t ad7091r5_i2c_read_mask | ( | struct ad7091r5_dev * | dev, |
uint8_t | reg_addr, | ||
uint8_t | mask, | ||
uint16_t * | data ) |
I2C read from device using a mask.
dev | - The device structure. |
reg_addr | - The register address. |
mask | - The mask. |
data | - The register data. |
int32_t ad7091r5_i2c_reg_read | ( | struct ad7091r5_dev * | dev, |
uint8_t | reg_addr, | ||
uint16_t * | reg_data ) |
Read from device.
dev | - The device structure. |
reg_addr | - The register address. |
reg_data | - The register data. |
int32_t ad7091r5_i2c_reg_write | ( | struct ad7091r5_dev * | dev, |
uint8_t | reg_addr, | ||
uint16_t | reg_data ) |
Write to device.
dev | - The device structure. |
reg_addr | - The register address. |
reg_data | - The register data. |
int32_t ad7091r5_i2c_write_mask | ( | struct ad7091r5_dev * | dev, |
uint8_t | reg_addr, | ||
uint16_t | mask, | ||
uint16_t | data ) |
I2C write to device using a mask.
dev | - The device structure. |
reg_addr | - The register address. |
mask | - The mask. |
data | - The register data. |
int32_t ad7091r5_init | ( | struct ad7091r5_dev ** | device, |
struct ad7091r5_init_param * | init_param ) |
Initialize the device.
device | - The device structure. |
init_param | - The structure that contains the device initial parameters. |
int32_t ad7091r5_read_one | ( | struct ad7091r5_dev * | dev, |
uint8_t | channel, | ||
uint16_t * | read_val ) |
Read one sample.
dev | - The device structure. |
channel | - Channel. |
read_val | - Value. |
int32_t ad7091r5_remove | ( | struct ad7091r5_dev * | dev | ) |
Free the memory allocated by ad7091r5_init().
dev | - Pointer to the device handler. |
int32_t ad7091r5_reset | ( | struct ad7091r5_dev * | dev, |
bool | is_software ) |
Initialize GPIO driver handlers for the GPIOs in the system. ad7091r5_init() helper function.
dev | - ad7091r5_dev device handler. |
is_software | - true: Software reset
|
int32_t ad7091r5_set_channel | ( | struct ad7091r5_dev * | dev, |
uint8_t | channel ) |
Set device channel.
dev | - The device structure. |
channel | - Channel. |
int32_t ad7091r5_set_cycle_timer | ( | struct ad7091r5_dev * | dev, |
enum ad7091r5_cycle_timer | timer ) |
Set cycle timer for autocycle mode.
dev | - The device structure. |
timer | - Converter sampling period. |
int32_t ad7091r5_set_gpo0_mode | ( | struct ad7091r5_dev * | dev, |
enum ad7091r5_gpo0_mode | mode, | ||
bool | is_cmos ) |
Set GPO0 mode.
dev | - The device structure. |
mode | - GPO0 new mode. |
is_cmos | - 0: GPO0 is open drain
|
int32_t ad7091r5_set_limit | ( | struct ad7091r5_dev * | dev, |
enum ad7091r5_limit | limit, | ||
uint8_t | channel, | ||
uint16_t | value ) |
Set high limit, low limit, hysteresis.
dev | - The device structure. |
limit | - Limit. |
channel | - Channel. |
value | - Value. |
int32_t ad7091r5_set_mode | ( | struct ad7091r5_dev * | dev, |
enum ad7091r5_mode | mode ) |
Set mode.
dev | - The device structure. |
mode | - Converter mode. |
int32_t ad7091r5_set_port | ( | struct ad7091r5_dev * | dev, |
enum ad7091r5_port | port, | ||
bool | value ) |
Set output port value.
dev | - The device structure. |
port | - Port number. |
value | - Value. |
int32_t ad7091r5_sleep_mode | ( | struct ad7091r5_dev * | dev, |
enum ad7091r5_sleep_mode | mode ) |
Set sleep mode.
dev | - The device structure. |
mode | - Sleep mode. |