Linduino  1.3.0
Linear Technology Arduino-Compatible Demonstration Board

LTC2984: Multi-Sensor High Accuracy Digital Temperature Measurement System. More...

Detailed Description

LTC2984: Multi-Sensor High Accuracy Digital Temperature Measurement System.

support_functions_LTC2984.h:
This file contains all the support function prototypes used in the main program.

http://www.linear.com/product/LTC2984

http://www.linear.com/product/LTC2984#demoboards

Copyright 2018(c) Analog Devices, Inc.

All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  • Neither the name of Analog Devices, Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
  • The use of this software may or may not infringe the patent rights of one or more patent holders. This license does not release you from the requirement that you obtain separate licenses from these patent holders to use this software.
  • Use of the software either in source or binary form, must be run on or directly connected to an Analog Devices Inc. component.

THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ANALOG DEVICES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, INTELLECTUAL PROPERTY RIGHTS, 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.

Header for LTC2984: Multi-Sensor High Accuracy Digital Temperature Measurement System

Definition in file support_functions_LTC2984.h.

Go to the source code of this file.

Functions

void print_title ()
 Prints the title block when program first starts. More...
 
void assign_channel (uint8_t chip_select, uint8_t channel_number, uint32_t channel_assignment_data)
 
void write_custom_table (uint8_t chip_select, struct table_coeffs coefficients[64], uint16_t start_address, uint8_t table_length)
 
void write_custom_steinhart_hart (uint8_t chip_select, uint32_t steinhart_hart_coeffs[6], uint16_t start_address)
 
void measure_channel (uint8_t chip_select, uint8_t channel_number, uint8_t channel_output)
 
void convert_channel (uint8_t chip_select, uint8_t channel_number)
 
void wait_for_process_to_finish (uint8_t chip_select)
 
void get_result (uint8_t chip_select, uint8_t channel_number, uint8_t channel_output)
 
void print_conversion_result (uint32_t raw_conversion_result, uint8_t channel_output)
 
void read_voltage_or_resistance_results (uint8_t chip_select, uint8_t channel_number)
 
void print_fault_data (uint8_t fault_byte)
 
void eeprom_transfer (uint8_t chip_select, uint8_t read_or_write)
 
uint32_t transfer_four_bytes (uint8_t chip_select, uint8_t read_or_write, uint16_t start_address, uint32_t input_data)
 
uint8_t transfer_byte (uint8_t chip_select, uint8_t read_or_write, uint16_t start_address, uint8_t input_data)
 
uint16_t get_start_address (uint16_t base_address, uint8_t channel_number)
 
bool is_number_in_array (uint8_t number, uint8_t *array, uint8_t array_length)
 

Function Documentation

◆ assign_channel()

void assign_channel ( uint8_t  chip_select,
uint8_t  channel_number,
uint32_t  channel_assignment_data 
)

Definition at line 90 of file support_functions_LTC2983.cpp.

◆ convert_channel()

void convert_channel ( uint8_t  chip_select,
uint8_t  channel_number 
)

Definition at line 159 of file support_functions_LTC2983.cpp.

◆ eeprom_transfer()

void eeprom_transfer ( uint8_t  chip_select,
uint8_t  read_or_write 
)

Definition at line 149 of file support_functions_LTC2984.cpp.

◆ get_result()

void get_result ( uint8_t  chip_select,
uint8_t  channel_number,
uint8_t  channel_output 
)

Definition at line 183 of file support_functions_LTC2983.cpp.

◆ get_start_address()

uint16_t get_start_address ( uint16_t  base_address,
uint8_t  channel_number 
)

Definition at line 324 of file support_functions_LTC2983.cpp.

◆ is_number_in_array()

bool is_number_in_array ( uint8_t  number,
uint8_t *  array,
uint8_t  array_length 
)

Definition at line 330 of file support_functions_LTC2983.cpp.

◆ measure_channel()

void measure_channel ( uint8_t  chip_select,
uint8_t  channel_number,
uint8_t  channel_output 
)

Definition at line 152 of file support_functions_LTC2983.cpp.

◆ print_conversion_result()

void print_conversion_result ( uint32_t  raw_conversion_result,
uint8_t  channel_output 
)

Definition at line 211 of file support_functions_LTC2983.cpp.

◆ print_fault_data()

void print_fault_data ( uint8_t  fault_byte)

Definition at line 251 of file support_functions_LTC2983.cpp.

◆ print_title()

void print_title ( )

Prints the title block when program first starts.

Print the title block.

Prints the title block.

Prints the title block when the program first starts.

Returns
void

Definition at line 75 of file support_functions_LTC2983.cpp.

◆ read_voltage_or_resistance_results()

void read_voltage_or_resistance_results ( uint8_t  chip_select,
uint8_t  channel_number 
)

Definition at line 237 of file support_functions_LTC2983.cpp.

◆ transfer_byte()

uint8_t transfer_byte ( uint8_t  chip_select,
uint8_t  read_or_write,
uint16_t  start_address,
uint8_t  input_data 
)

Definition at line 308 of file support_functions_LTC2983.cpp.

◆ transfer_four_bytes()

uint32_t transfer_four_bytes ( uint8_t  chip_select,
uint8_t  read_or_write,
uint16_t  start_address,
uint32_t  input_data 
)

Definition at line 284 of file support_functions_LTC2983.cpp.

◆ wait_for_process_to_finish()

void wait_for_process_to_finish ( uint8_t  chip_select)

Definition at line 168 of file support_functions_LTC2983.cpp.

◆ write_custom_steinhart_hart()

void write_custom_steinhart_hart ( uint8_t  chip_select,
uint32_t  steinhart_hart_coeffs[6],
uint16_t  start_address 
)

Definition at line 124 of file support_functions_LTC2983.cpp.

◆ write_custom_table()

void write_custom_table ( uint8_t  chip_select,
struct table_coeffs  coefficients[64],
uint16_t  start_address,
uint8_t  table_length 
)

Definition at line 97 of file support_functions_LTC2983.cpp.