no-OS
|
Go to the source code of this file.
Classes | |
struct | ltc2312_dev |
struct | ltc2312_init_param |
Macros | |
#define | LTC2315_CS QUIKEVAL_CS |
#define | LTC2312_READ_BYTES_NUMBER 2 |
#define | LTC2312_READ_VALUES_NUMBER 100 |
LTC2315 Channel Address | |
#define | LTC2315_ADDRESS 0x00 |
Enumerations | |
enum | device_type { LTC2312_12, LTC2312_14 } |
Functions | |
int32_t | ltc2312_setup (struct ltc2312_dev **device, struct ltc2312_init_param *init_param) |
int32_t | ltc2312_remove (struct ltc2312_dev *dev) |
int32_t | ltc2312_read (struct ltc2312_dev *dev, uint16_t *ptr_adc_code) |
void | ltc2312_code_to_voltage (struct ltc2312_dev *dev, uint16_t adc_code, float vref, float *voltage) |
REVISION HISTORY
Copyright (c) 2013, Linear Technology Corp.(LTC) All rights reserved.
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 THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 THE COPYRIGHT OWNER OR CONTRIBUTORS 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.
The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of Linear Technology Corp.
The Linear Technology Linduino is not affiliated with the official Arduino team. However, the Linduino is only possible because of the Arduino team's commitment to the open-source community. Please, visit http://www.arduino.cc and http://store.arduino.cc , and consider a purchase that will help fund their ongoing work.
Header for LTC2315: 12/14-bit 1Msps ADC
#define LTC2312_READ_BYTES_NUMBER 2 |
#define LTC2312_READ_VALUES_NUMBER 100 |
#define LTC2315_ADDRESS 0x00 |
#define LTC2315_CS QUIKEVAL_CS |
Define the SPI CS pin
enum device_type |
void ltc2312_code_to_voltage | ( | struct ltc2312_dev * | dev, |
uint16_t | adc_code, | ||
float | vref, | ||
float * | voltage | ||
) |
Calculates the LTC2312 input voltage given the binary data and LSB weight.
[in] | dev | - The device structure. |
[in] | adc_code | - Raw ADC code. |
[in] | vref | - The reference voltage of the ADC. |
[out] | voltage | - Voltage value calculated. |
int32_t ltc2312_read | ( | struct ltc2312_dev * | dev, |
uint16_t * | ptr_adc_code | ||
) |
Reads the LTC2312 and returns 16-bit data in offset binary format.
[in] | dev | - The device structure. |
[out] | ptr_adc_code | - Read data. |
int32_t ltc2312_remove | ( | struct ltc2312_dev * | dev | ) |
Free the resources allocated by ltc2312_setup().
[in] | dev | - The device structure. |
int32_t ltc2312_setup | ( | struct ltc2312_dev ** | device, |
struct ltc2312_init_param * | init_param | ||
) |
Initializes the ltc2312 device handler.
[out] | device | - The device structure. |
[in] | init_param | - The structure that contains the device initial parameters. |