no-OS
|
Implementation of max11205.c. More...
Functions | |
int | max11205_init (struct max11205_dev **device, struct max11205_init_param init_param) |
Initializes the communication peripheral. More... | |
int | max11205_get_data_raw (struct max11205_dev *dev, bool *new_data_avail, int16_t *data_raw) |
Get the converted data. More... | |
int | max11205_get_data_mv (struct max11205_dev *dev, int16_t raw_data, int32_t *data_mv) |
Get the converted data. More... | |
int | max11205_remove (struct max11205_dev *dev) |
Free memory allocated by max11205_init(). More... | |
Implementation of max11205.c.
Copyright 2022(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.
int max11205_get_data_mv | ( | struct max11205_dev * | dev, |
int16_t | raw_data, | ||
int32_t * | data_mv | ||
) |
Get the converted data.
dev | - Device handler. |
raw_data | - ADC raw data to be converted to millivolts. |
data_mv | - Pointer to adc value measured in millivolts. |
int max11205_get_data_raw | ( | struct max11205_dev * | dev, |
bool * | new_data_avail, | ||
int16_t * | data_raw | ||
) |
Get the converted data.
dev | - Device handler. |
new_data_avail | - True if data has been updated since last read, false if same data is read again. |
data_raw | - Pointer to raw adc value. |
int max11205_init | ( | struct max11205_dev ** | device, |
struct max11205_init_param | init_param | ||
) |
Initializes the communication peripheral.
device | - The device structure. |
init_param | - The structure that contains the device initial parameters. |
int max11205_remove | ( | struct max11205_dev * | dev | ) |
Free memory allocated by max11205_init().
dev | - Device handler. |