Linduino  1.3.0
Linear Technology Arduino-Compatible Demonstration Board

LTC2604: Quad 16-Bit Rail-to-Rail DACs in 16-Lead SSOP. More...

Detailed Description

LTC2604: Quad 16-Bit Rail-to-Rail DACs in 16-Lead SSOP.

The LTC2604/LTC2614/LTC2624 are quad 16-,14- and 12-bit 2.5V to 5.5V
rail-to-rail voltage output DACs in 16-lead narrow SSOP packages. These
parts have separate reference inputs for each DAC. They have built-in
high performance output buffers and are guaranteed monotonic.

These parts establish advanced performance standards for output drive,
crosstalk and load regulation in single-supply, voltage output multiples.

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

http://www.linear.com/product/LTC2604#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.

Definition in file DC809A.ino.

Go to the source code of this file.

Functions

static void print_title ()
 Prints the title block when program first starts. More...
 
static void print_prompt (int16_t selected_dac)
 Prints main menu. More...
 
static int16_t prompt_voltage_or_code ()
 Prompt user to enter a voltage or digital code to send to DAC. More...
 
static uint16_t get_voltage (float LTC2604_lsb, int16_t LTC2604_offset)
 Get voltage from user input, calculate DAC code based on lsb, offset. More...
 
static uint16_t get_code ()
 Get code to send to DAC directly, in decimal, hex, or binary. More...
 
static void menu_1_select_dac (int16_t *selected_dac)
 Select which DAC to operate on. More...
 
static void menu_2_write_to_input_register (int16_t selected_dac)
 Write data to input register, but do not update DAC output. More...
 
static void menu_3_write_and_update_dac (int16_t selected_dac)
 Write data to DAC register (which updates output immediately) More...
 
static void menu_4_update_power_up_dac (int16_t selected_dac)
 Update DAC with data that is stored in input register, power up if sleeping. More...
 
static void menu_5_power_down_dac (int16_t selected_dac)
 Power down DAC. More...
 
static void setup ()
 Initialize Linduino. More...
 
static void loop ()
 Repeats Linduino loops. More...
 

Enumerations

enum  { PROMPT_VOLTAGE = 0, PROMPT_CODE = 1 }
 Used to keep track to print voltage or print code. More...
 

Variables

static uint8_t demo_board_connected
 set to 1 if the board is connected More...
 
static uint8_t shift_count =0
 The data align shift count for 16-bit =0 14-bit =2 12-bit =4. More...
 
static float reference_voltage [4] = {4.096,4.096,4.096,4.096}
 set based on jumper positions More...
 
static int16_t LTC2604_offset =0
 
static float LTC2604_lsb [4]
 
const uint8_t address_map [5] = {LTC2604_DAC_A, LTC2604_DAC_B, LTC2604_DAC_C, LTC2604_DAC_D, LTC2604_DAC_ALL}
 Lookup table for DAC address. More...
 

Function Documentation

◆ get_code()

static uint16_t get_code ( )
static

Get code to send to DAC directly, in decimal, hex, or binary.

Returns
code from user

Definition at line 249 of file DC809A.ino.

◆ get_voltage()

static uint16_t get_voltage ( float  LTC2604_lsb,
int16_t  LTC2604_offset 
)
static

Get voltage from user input, calculate DAC code based on lsb, offset.

Returns
the DAC code
Parameters
LTC2604_lsbthe voltage LSB of the DAC
LTC2604_offsetthe Offset of the DAC

Definition at line 234 of file DC809A.ino.

◆ loop()

static void loop ( void  )
static

Repeats Linduino loops.

Definition at line 125 of file DC809A.ino.

◆ menu_1_select_dac()

static void menu_1_select_dac ( int16_t *  selected_dac)
static

Select which DAC to operate on.

Parameters
selected_dacwhat DAC to operate on

Definition at line 164 of file DC809A.ino.

◆ menu_2_write_to_input_register()

static void menu_2_write_to_input_register ( int16_t  selected_dac)
static

Write data to input register, but do not update DAC output.

Parameters
selected_dacwhat DAC to operate on

Definition at line 176 of file DC809A.ino.

◆ menu_3_write_and_update_dac()

static void menu_3_write_and_update_dac ( int16_t  selected_dac)
static

Write data to DAC register (which updates output immediately)

Parameters
selected_dacwhat DAC to operate on

Definition at line 189 of file DC809A.ino.

◆ menu_4_update_power_up_dac()

static void menu_4_update_power_up_dac ( int16_t  selected_dac)
static

Update DAC with data that is stored in input register, power up if sleeping.

Parameters
selected_dacwhat DAC to operate on

Definition at line 202 of file DC809A.ino.

◆ menu_5_power_down_dac()

static void menu_5_power_down_dac ( int16_t  selected_dac)
static

Power down DAC.

Parameters
selected_dacwhat DAC to operate on

Definition at line 209 of file DC809A.ino.

◆ print_prompt()

static void print_prompt ( int16_t  selected_dac)
static

Prints main menu.

Parameters
selected_dacwhat DAC to operate on

Definition at line 277 of file DC809A.ino.

◆ print_title()

static void print_title ( void  )
static

Prints the title block when program first starts.

Definition at line 262 of file DC809A.ino.

◆ prompt_voltage_or_code()

static int16_t prompt_voltage_or_code ( )
static

Prompt user to enter a voltage or digital code to send to DAC.

Returns
user input

Definition at line 218 of file DC809A.ino.

◆ setup()

static void setup ( void  )
static

Initialize Linduino.

Definition at line 109 of file DC809A.ino.

Enumeration Type Documentation

◆ anonymous enum

anonymous enum

Used to keep track to print voltage or print code.

Enumerator
PROMPT_VOLTAGE 

0

PROMPT_CODE 

1

Definition at line 102 of file DC809A.ino.

Variable Documentation

◆ address_map

Lookup table for DAC address.

Allows the "All DACs" address to be indexed right after DAC D in loops. This technique is very useful for devices with non-monotonic channel addresses. Map entered option 0..2 to DAC address

Definition at line 99 of file DC809A.ino.

◆ demo_board_connected

uint8_t demo_board_connected
static

set to 1 if the board is connected

Definition at line 87 of file DC809A.ino.

◆ LTC2604_lsb

float LTC2604_lsb[4]
static
Initial value:
= {reference_voltage[0]/ (pow(2,16) - 1) , reference_voltage[1]/ (pow(2,16) - 1),
reference_voltage[2]/ (pow(2,16) - 1),reference_voltage[3]/ (pow(2,16) - 1)
}
static float reference_voltage[4]
set based on jumper positions
Definition: DC809A.ino:89

Definition at line 91 of file DC809A.ino.

◆ LTC2604_offset

int16_t LTC2604_offset =0
static

Definition at line 90 of file DC809A.ino.

◆ reference_voltage

float reference_voltage[4] = {4.096,4.096,4.096,4.096}
static

set based on jumper positions

Definition at line 89 of file DC809A.ino.

◆ shift_count

uint8_t shift_count =0
static

The data align shift count for 16-bit =0 14-bit =2 12-bit =4.

Definition at line 88 of file DC809A.ino.