no-OS
|
Implementation of 7980 Driver. More...
Functions | |
int8_t | ad7980_init (struct ad7980_dev **device, struct ad7980_init_param init_param) |
Initializes the communication peripheral. More... | |
int32_t | ad7980_remove (struct ad7980_dev *dev) |
Free the resources allocated by ad7980_init(). More... | |
uint16_t | ad7980_conversion (struct ad7980_dev *dev) |
Initiates conversion and reads data. More... | |
float | ad7980_convert_to_volts (uint16_t raw_sample, float v_ref) |
Converts a 16-bit raw sample to volts. More... | |
Implementation of 7980 Driver.
Copyright 2012(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.
uint16_t ad7980_conversion | ( | struct ad7980_dev * | dev | ) |
Initiates conversion and reads data.
dev | - The device structure. |
float ad7980_convert_to_volts | ( | uint16_t | raw_sample, |
float | v_ref | ||
) |
Converts a 16-bit raw sample to volts.
raw_sample | - 16-bit data sample. |
v_ref | - The value of the voltage reference used by the device. |
int8_t ad7980_init | ( | struct ad7980_dev ** | device, |
struct ad7980_init_param | init_param | ||
) |
Initializes the communication peripheral.
device | - The device structure. |
init_param | - The structure that contains the device initial parameters. |
int32_t ad7980_remove | ( | struct ad7980_dev * | dev | ) |
Free the resources allocated by ad7980_init().
dev | - The device structure. |