Controlling the Agilent 34980A internal DMM using the IVI-C DMM Class Driver in cooperation with the Agilent 34980A IVI driver

Size: px
Start display at page:

Download "Controlling the Agilent 34980A internal DMM using the IVI-C DMM Class Driver in cooperation with the Agilent 34980A IVI driver"

Transcription

1 Controlling the Agilent 34980A internal DMM using the IVI-C DMM Class Driver in cooperation with the Agilent 34980A IVI driver Agilent Technologies, Inc. Alan Copeland Last revised June 23, 2009 Goal We want to use the 34980A s internal DMM to make measurements and control that DMM with an IVI-C driver. Problem The Agilent 34980A IVI driver implements the IVI-C Switch class, but does not implement the IVI-C DMM class. Solution Using NI s IVI-C to IVI-COM adapter we can bridge between the NI IVI-C DMM Class Driver and the Agilent 34980A IVI-COM driver that supports the IVI-COM DMM class (IIviDmm interface). Agilent Technologies, Inc. pg. 1

2 Contents How NI s IVI-C Class Drivers work... 3 Software to install... 4 Important installation considerations... 4 Configuring the Driver Session using the NI IVI Configuration Store tool... 5 Example code... 8 NI LabWindows/CVI 9.0 code... 9 Visual C win32 console code Agilent Technologies, Inc. pg. 2

3 How NI s IVI-C Class Drivers work The users program will link directly to the NI IVI-C Class Driver. In the Initialize call, the user will supply a Driver Session for the address. The IVI-C Class Driver will query the IVI Configuration Store to see what driver is associated with the Driver Session. If the IVI Configuration Store reports that the Driver Session is associated with an IVI-C driver that supports the IVI Class, the IVI-C Class Driver will broker calls to the specific driver. The specific driver will then broker the interaction with the instrument (see Figure 1). Figure 1 Figure 1 - IVI-C Class Driver talking to IVI-C Specific Driver User Program IVI-C DMM Class Driver IVI-C to IVI-COM adapter for IVI DMM Agilent 34980A IVI-COM Driver (supports IVI-COM IIviSwtch) Instrument Q: Which driver is assigned to Driver Session = dmm_session? IVI Configuration Store A: Agilent34980A IVI-COM Driver Key User Program NI IVI Compliance Package IVI Shared Components Agilent IVI Driver Instrument If the IVI Configuration Store reports that the Driver Session is associated with an IVI-COM driver that supports the IVI Class, the IVI-C Class Driver will use an IVI-C to IVI-COM adapter to broker calls to the specific driver. The specific driver will then broker the interaction with the instrument (see Figure 2). Figure 2 IVI-C Class Driver talking to IVI-COM specific driver through an IVI-C to IVI-COM adaptor Agilent Technologies, Inc. pg. 3

4 Software to install NI LabWindows/CVI 9.0 1, or Microsoft Visual C or later NI VISA o Installs NI Measurement and Automation Explorer (NI-MAX). NI IVI Compliance Package Agilent 34980A IVI instrument driver version Important installation considerations 1. Install the NI IVI Compliance Package after NI-MAX has been installed on the system (the NI IVI Configuration Store Tool won t be installed by the IVI Compliance package if NI-MAX isn t already on the system) 2. When installing the NI IVI Compliance Package choose the option to install the IVI-COM Adapters, which are not selected by default. 1 Download from 2 Download from 3 Download from &id= Agilent Technologies, Inc. pg. 4

5 Configuring the Driver Session using the NI IVI Configuration Store tool 1) Create a new Driver Session by right-clicking the Driver Session node in NI-MAX (under My System IVI Drivers) 2) Select the General tab for the Driver Session. In this tab you can set any initialization options that you need for the driver. 5 5 Note, adding the entry Trace=true in the Driver Setup field is completely optional. This option enables the Agilent 34980A IVI driver s internal tracing option, which outputs driver trace information to an XML file in the directory where the main program executable is located. This can be useful for debugging purposes. Agilent Technologies, Inc. pg. 5

6 3) Next, select the Hardware tab for the Driver Session. In this example, give the Resource Descriptor a value of dmm, which is a VISA alias. This enables us to reassign the VISA alias (in NI- MAX or Agilent Connection Expert) to a different instrument without having to change any program code, or the IVI Configuration Store information. 6 6 Don t forget to setup the VISA alias (in NI-MAX or Agilent Connection Expert) for your 34980A after you have finished configuring the Driver Session. Agilent Technologies, Inc. pg. 6

7 4) Finally, select the Software tab for the Driver Session. Choose Ag34980a from the Software Module dropdown box. 5) Click Save IVI Configuration. Agilent Technologies, Inc. pg. 7

8 Example code On the next couple of pages, you will find some simple example code that shows how to use the NI IVI DMM Class driver in LabWindows/CVI and in Microsoft Visual C++. To use the code, you will first need to setup an example project. For an example on how to setup the C++ compiler and linker options, see the IVI Getting Started Guide for the environment that you are interested in using (you can download all IVI Getting Started Guide s at the IVI Foundation website, Once the project is setup, simply copy the code into a.c file, compile the program, then run it. Agilent Technologies, Inc. pg. 8

9 NI LabWindows/CVI 9.0 code #include <ansi_c.h> #include "ividmm.h" void main() { ViChar errmsg[1000]; ViInt32 err; ViReal64 reading = 0; ViSession dmm = 0; ViStatus dmm_init_err = 0; IviDmm_init ("driver_session_dmm", VI_TRUE, VI_FALSE, &dmm); IviDmm_ConfigureMeasurement (dmm, IVIDMM_VAL_2_WIRE_RES, 10000, 0.003); IviDmm_error_query (dmm, &err, errmsg); printf("%d %s", err, errmsg); IviDmm_Read (dmm, 5000, &reading); IviDmm_error_query (dmm, &err, errmsg); printf("%d %s", err, errmsg); IviDmm_close (dmm); printf("%f", reading); return; } Agilent Technologies, Inc. pg. 9

10 Visual C win32 console code #include "stdafx.h" #include "ividmm.h" int _tmain(int argc, _TCHAR* argv[]) { ViChar errmsg[1000]; ViInt32 err; ViReal64 reading = 0; ViSession dmm = 0; ViStatus dmm_init_err = 0; IviDmm_init ("driver_session_dmm", VI_TRUE, VI_FALSE, &dmm); IviDmm_ConfigureMeasurement (dmm, IVIDMM_VAL_2_WIRE_RES, 10000, 0.003); IviDmm_error_query (dmm, &err, errmsg); printf("%d %s", err, errmsg); IviDmm_Read (dmm, 5000, &reading); IviDmm_error_query (dmm, &err, errmsg); printf("%d %s", err, errmsg); IviDmm_close (dmm); printf("%f", reading); return 0; } Agilent Technologies, Inc. pg. 10

Table of Contents. Pickering Instruments IVI Driver Help... 1 Contents... 1 Getting Started... 3 Introduction... 3 Essential Functions... 4 LXI...

Table of Contents. Pickering Instruments IVI Driver Help... 1 Contents... 1 Getting Started... 3 Introduction... 3 Essential Functions... 4 LXI... Table of Contents Pickering Instruments IVI Driver Help... 1 Contents... 1 Getting Started... 3 Introduction... 3 Essential Functions... 4 LXI... 5 LXISpecific... 5 PXI and PCI... 5 PXISpecific... 5 GPIB...

More information

Getting Started with IVI Drivers

Getting Started with IVI Drivers Getting Started with IVI Drivers Your Guide to Using IVI with LabWindows TM /CVI TM Version 1.2 Copyright IVI Foundation, 2015 All rights reserved The IVI Foundation has full copyright privileges of all

More information

IVI-4.4: IviDCPwr Class Specification

IVI-4.4: IviDCPwr Class Specification IVI Interchangeable Virtual Instruments IVI-4.4: IviDCPwr Class Specification August 25, 2011 Edition Revision 3.0 Important Information Warranty Trademarks The IviDCPwr Class Specification (IVI-4.4) is

More information

NI-ModInst Help Contents Index Search

NI-ModInst Help Contents Index Search NI-ModInst Help May 2008, 371474C-01 The NI-ModInst API provides a way to programmatically query for devices installed in your system that are supported by a specific instrument driver. This help file

More information

IVI. Interchangeable Virtual Instruments. Important Information. IVI-5: IviDmm Class Specification

IVI. Interchangeable Virtual Instruments. Important Information. IVI-5: IviDmm Class Specification IVI Interchangeable Virtual Instruments Important Information The IviDmm Class Specification (IVI-5) is authored by the IVI Foundation member companies. For a vendor membership roster list, please visit

More information

IVI-4.3: IviFgen Class Specification

IVI-4.3: IviFgen Class Specification IVI Interchangeable Virtual Instruments IVI-4.3: IviFgen Class Specification June 9, 2010 Edition Revision 4.0 Important Information Warranty Trademarks The IviFgen Class Specification (IVI-4.3) is authored

More information

Giga-tronics ASCOR Series 8000 Switch

Giga-tronics ASCOR Series 8000 Switch GIGA-TRONICS Giga-tronics ASCOR Series 8000 Switch Getting Started Guide Terukuni Okuyama 2013-08-14 This guide describes the installation, controlling, and programming of the Series 8000 Switch Module.

More information

Systems Alliance. VPP-3.2: Instrument Driver Functional Body Specification. Revision 5.1

Systems Alliance. VPP-3.2: Instrument Driver Functional Body Specification. Revision 5.1 Systems Alliance VPP-3.2: Instrument Driver Functional Body Specification Revision 5.1 April 14, 2008 VPP-3.2 Revision History This section is an overview of the revision history of the VPP-3.2 specification.

More information

IVI Instrument Driver Programming Guide. (LabVIEW Edition) June 2012 Revision Overview. 1-1 Recommendation Of IVI-C Driver

IVI Instrument Driver Programming Guide. (LabVIEW Edition) June 2012 Revision Overview. 1-1 Recommendation Of IVI-C Driver IVI Instrument Driver Programming Guide (LabVIEW Edition) June 2012 Revision 2.1 1- Overview 1-1 Recommendation Of IVI-C Driver LabVIEW has a capability to import IVI-C instrument drivers. Although it

More information

IVI-3.12: Floating Point Services Specification

IVI-3.12: Floating Point Services Specification IVI Interchangeable Virtual Instruments IVI-3.12: Floating Point Services Specification April 2008 Edition Revision 1.0 Important Information Warranty Trademarks The Floating Point Services Specification

More information

VST Basics Programming Guide

VST Basics Programming Guide Application Note November 2015 VST Basics Programming Guide Cobham Wireless - Validation Application Note 46900/845 www.cobham.com/wireless VST Introduction VST Basics Programming Guide 1 VST Introduction...

More information

Introduction. 1.1 Included in this release

Introduction. 1.1 Included in this release Keithley Instruments 622X-855B01.1 Release Note for Version B01.1 IVI Instrument Driver for the Model 6220/6221 11/23/2008 IMPORTANT: To work properly with the driver, your instrument must have a compatible

More information

Systems Alliance. VPP-3.4: Instrument Driver Programmatic Developer Interface Specification. Revision 2.5

Systems Alliance. VPP-3.4: Instrument Driver Programmatic Developer Interface Specification. Revision 2.5 Systems Alliance VPP-3.4: Instrument Driver Programmatic Developer Interface Specification Revision 2.5 April 14, 2008 VPP-3.4 Revision History This section is an overview of the revision history of the

More information

VTEXSYSTEM DRIVER PROGRAMMER S MANUAL. P/N: Released July 30, VTI Instruments Corp.

VTEXSYSTEM DRIVER PROGRAMMER S MANUAL. P/N: Released July 30, VTI Instruments Corp. VTEXSYSTEM DRIVER PROGRAMMER S MANUAL P/N: 82-0125-000 Released July 30, 2010 VTI Instruments Corp. 2031 Main Street Irvine, CA 92614-6509 (949) 955-1894 VTI Instruments Corp. TABLE OF CONTENTS INTRODUCTION

More information

IVI. Interchangeable Virtual Instruments. IVI-5.0: Glossary. IVI Foundation 1 IVI-5: Glossary. June 7, 2016 Edition Revision 1.1

IVI. Interchangeable Virtual Instruments. IVI-5.0: Glossary. IVI Foundation 1 IVI-5: Glossary. June 7, 2016 Edition Revision 1.1 IVI Interchangeable Virtual Instruments IVI-5.0: Glossary June 7, 2016 Edition Revision 1.1 IVI Foundation 1 IVI-5: Glossary Important Information Notice Warranty Trademarks IVI-5.0: Glossary is authored

More information

IVI-3.3: Standard Cross-Class Capabilities Specification. February 23, 2016 Edition Revision 3.2

IVI-3.3: Standard Cross-Class Capabilities Specification. February 23, 2016 Edition Revision 3.2 IVI Interchangeable Virtual Instruments IVI-3.3: Standard Cross-Class Capabilities Specification February 23, 2016 Edition Revision 3.2 IVI Foundation 1 IVI-3.3: Standard Cross Class Capabilities Important

More information

VISA Events in NI-VISA

VISA Events in NI-VISA VISA Events in NI-VISA Introduction The VISA operations Read, Write, In and Out allow basic I/O operations from the controller to instruments. These operations make up the basics of instrument I/O, but

More information

Systems Alliance VPP-4.3.5: VISA Shared Components October 19, 2018 Revision 7.0

Systems Alliance VPP-4.3.5: VISA Shared Components October 19, 2018 Revision 7.0 Systems Alliance VPP-4.3.5: VISA Shared Components October 19, 2018 Revision 7.0 Systems Alliance VPP-4.3.5 Revision History This section is an overview of the VPP-4.3.5 specification revision history.

More information

.NET programming interface for R&S GTSL and R&S EGTSL

.NET programming interface for R&S GTSL and R&S EGTSL Application Note 2.2016 SE001_0e.NET programming interface for R&S GTSL and R&S EGTSL Application Note Products: ı R&S CompactTSVP ı R&S PowerTSVP ı R&S GTSL ı R&S EGTSL This application note describes

More information

IVI Instrument Driver Programming Guide. (Setup Edition) June 2012 Revision IVI Instrument Driver Overview. 1-1 IVI-C vs.

IVI Instrument Driver Programming Guide. (Setup Edition) June 2012 Revision IVI Instrument Driver Overview. 1-1 IVI-C vs. IVI Instrument Driver Programming Guide (Setup Edition) June 2012 Revision 2.0 1- IVI Instrument Driver Overview 1-1 IVI-C vs. IVI-COM IVI Instrument Driver is an instrumentation middle-ware conforming

More information

NI Introduction CALIBRATION PROCEDURE. What Is Calibration? External Calibration

NI Introduction CALIBRATION PROCEDURE. What Is Calibration? External Calibration CALIBRATION PROCEDURE NI 5911 Introduction What Is Calibration? This document contains information and step-by-step instructions for calibrating the NI 5911 digitizer. This calibration procedure is intended

More information

VXIplug&play Driver User s Guide Silicon Investigations Repair Information - Contact Us 920-955-3693 www.siliconinvestigations.com Agilent 4155B Semiconductor Parameter Analyzer Agilent 4156B Precision

More information

Lx \ Ls Series AC Power Source IVI Instrument Driver Manual LabView, LabWindows/CVI

Lx \ Ls Series AC Power Source IVI Instrument Driver Manual LabView, LabWindows/CVI Lx \ Ls Series AC Power Source IVI Instrument Driver Manual LabView, LabWindows/CVI Contact Information Telephone: 800 733 5427 (toll free in North America) 858 450 0085 (direct) Fax: 858 458 0267 Email:

More information

Software User Manual

Software User Manual Software User Manual Issue 1.1 February 2018 pickeringtest.com pickering Page 1 COPYRIGHT (2018) PICKERING INTERFACES. ALL RIGHTS RESERVED. No part of this publication may be reproduced, transmitted, transcribed,

More information

2050 User Manual V1.0

2050 User Manual V1.0 2050 User Manual 4200-0339 V1.0 Table of Contents Overview...5 Typical...6 Overview...7 System Controller...7 PXI Chassis and Instrumentation...7 Resource Interface Chassis and Instrumentation... 7 Mass

More information

VTEX SWITCH DRIVER PROGRAMMER S MANUAL. P/N: Released October 16, VXI Technology, Inc.

VTEX SWITCH DRIVER PROGRAMMER S MANUAL. P/N: Released October 16, VXI Technology, Inc. VTEX SWITCH DRIVER PROGRAMMER S MANUAL P/N: 82-0117-000 Released October 16, 2007 VXI Technology, Inc. 2031 Main Street Irvine, CA 92614-6509 (949) 955-1894 VXI Technology, Inc. 2 VTEX Switch Driver Programmer

More information

The IVI Driver Standards

The IVI Driver Standards The IVI Driver Standards By Joe Mueller, President, IVI Foundation The IVI Foundation exists to define standards that simplify programming test instruments. Although the IVI Foundation is responsible for

More information

IVI Compliance Package Release Notes

IVI Compliance Package Release Notes IVI Compliance Package Release Notes Version 2.0 Introduction These release notes contain installation and uninstallation instructions, system requirements, features, and upgrade considerations for the

More information

IVI-3.1: Driver Architecture Specification

IVI-3.1: Driver Architecture Specification IVI Interchangeable Virtual Instruments IVI-3.1: Driver Architecture Specification March 28, 2014 Edition Revision 3.5 Important Information IVI-3.1: Driver Architecture Specification is authored by the

More information

IMSL C Numerical Library

IMSL C Numerical Library IMSL C Numerical Library Getting Started Guide for Windows A Technical Guide by Rogue Wave Software. Rogue Wave Software 5500 Flatiron Parkway, Suite 200 Boulder, CO 80301, USA www.roguewave.com IMSL C

More information

*********************** **** Read Me First **** *********************** Version August 2012

*********************** **** Read Me First **** *********************** Version August 2012 *********************** **** Read Me First **** *********************** Version 1.4.5.0 August 2012 Introducing the Keithley IVI-COM Driver for the 26XXA/B Source Measure Unit -------------------------------------------------------------------------

More information

Getting Started with IVI Drivers

Getting Started with IVI Drivers Getting Started with IVI Drivers Your Guide to Using IVI with MATLAB Version 1.2 Copyright IVI Foundation, 2012 All rights reserved The IVI Foundation has full copyright privileges of all versions of the

More information

IVI Instrument Driver Programming Guide. (Visual C++/CLI Edition) June 2012 Revision Overview. 2- Example Using Specific Interface

IVI Instrument Driver Programming Guide. (Visual C++/CLI Edition) June 2012 Revision Overview. 2- Example Using Specific Interface IVI Instrument Driver Programming Guide (Visual C++/CLI Edition) June 2012 Revision 2.0 1- Overview 1-1 Recommendation Of IVI-COM Driver Because Visual C++/CLI is a managed environment, IVI-COM instrument

More information

IVI-3.1: Driver Architecture Specification

IVI-3.1: Driver Architecture Specification IVI Interchangeable Virtual Instruments IVI-3.1: Driver Architecture Specification January 18, 2012 Edition Revision 3.3 Important Information IVI-3.1: Driver Architecture Specification is authored by

More information

Introducing the LXI Interface

Introducing the LXI Interface Introducing the LXI Interface APPLICATION NOTE Summary LXI is the latest industry standard for LAN connectivity to instruments and modular systems. Beginning with firmware release 5.7.2.1, several series

More information

VISA, SICL, VISA COM,

VISA, SICL, VISA COM, Agilent IO Libraries Suite 16.2 Quick Start Guide This Quick Start Guide describes how to: Install the Agilent IO Libraries Suite and instrument software Find the information you need to make instrument

More information

IVI Introduction. Autotestcon 2016

IVI Introduction. Autotestcon 2016 IVI Introduction 1 What is IVI? The primary purpose of the Consortium is to: Promote the development and adoption of standard specifications for programming test instrument Focus on the needs of the people

More information

Keysight Technologies Using PXI Modules, I/0 Libraries and IVI Switch Drivers with National Instruments Switch Executive.

Keysight Technologies Using PXI Modules, I/0 Libraries and IVI Switch Drivers with National Instruments Switch Executive. Keysight Technologies Using PXI Modules, I/0 Libraries and IVI Switch Drivers with National Instruments Switch Executive Application Note Table of Contents Using Keysight PXI modules with National Instruments

More information

Understanding the Benefits of IVI. Kirk G. Fertitta, Pacific Mindworks

Understanding the Benefits of IVI. Kirk G. Fertitta, Pacific Mindworks Understanding the Benefits of IVI By Kirk G. Fertitta, Pacific Mindworks 1 INTRODUCTION The Interchangeable Virtual Instrument (IVI) Foundation was formed in 1998 with a charter to simplify test system

More information

Getting Started with IVI Drivers

Getting Started with IVI Drivers Getting Started with IVI Drivers Your Guide to Using IVI with LabVIEW TM Version 1.1 Copyright IVI Foundation, 2011 All rights reserved The IVI Foundation has full copyright privileges of all versions

More information

System Developer Guide Using USB in the Test and Measurement Environment

System Developer Guide Using USB in the Test and Measurement Environment System Developer Guide Using USB in the Test and Measurement Environment Application Note 1465-12 This set of application notes shows you how to simplify test-system integration by utilizing open connectivity

More information

VXIplug&play Driver User s Guide

VXIplug&play Driver User s Guide VXIplug&play Driver User s Guide Agilent E5270 Series of Parametric Measurement Solutions E5270-90022 March 2004 Edition 2 Legal Notice The information contained in this document is subject to change without

More information

NI PCI-5153EX. Contents USER GUIDE. with Hardware Accumulation Firmware

NI PCI-5153EX. Contents USER GUIDE. with Hardware Accumulation Firmware USER GUIDE NI PCI-5153EX with Hardware Accumulation Firmware Contents The National Instruments PCI-5153EX is a version of the NI PCI-5153 that has a higher capacity FPGA. The larger FPGA enables the NI

More information

Program Organization and Comments

Program Organization and Comments C / C++ PROGRAMMING Program Organization and Comments Copyright 2013 Dan McElroy Programming Organization The layout of a program should be fairly straight forward and simple. Although it may just look

More information

This document provides additional information for the installation and use of the Keithley I/O Layer.

This document provides additional information for the installation and use of the Keithley I/O Layer. Keithley Instruments KIOL-850C07 Release Notes for Version C07 Keithley I/O Layer, including the Keithley Configuration Panel and Wizard, Keithley Communicator, and VISA runtime 3/30/2015 This document

More information

As CCS starts up, a splash screen similar to one shown below will appear.

As CCS starts up, a splash screen similar to one shown below will appear. APPENDIX A. CODE COMPOSER STUDIO (CCS) v6.1: A BRIEF TUTORIAL FOR THE DSK6713 A.1 Introduction Code Composer Studio (CCS) is Texas Instruments Eclipse-based integrated development environment (IDE) for

More information

IVI-3.4: API Style Guide

IVI-3.4: API Style Guide IVI Interchangeable Virtual Instruments IVI-3.4: API Style Guide March 22, 2016 Edition Revision 2.3 Important Information Warranty Trademarks The API Style Guide (IVI-3.4) is authored by the IVI Foundation

More information

#include <stdio.h> #include <math.h> int shownum(int digits[], int digitcount);

#include <stdio.h> #include <math.h> int shownum(int digits[], int digitcount); Problem 1: Programming in C [20 Points] Write a C program that takes as input a positive integer number and converts it to base 4. Some examples of input and output of this program are as follow: Example

More information

Lecture (03) x86 programming 2

Lecture (03) x86 programming 2 Lecture (03) x86 programming 2 By: Dr. Ahmed ElShafee ١ TOC The 80x86 Registers The Flag Register 80x86 Modes of operation ٢ Types of instruction set Complex instruction set computer (CISC): Large instruction

More information

*********************** **** Read Me First **** *********************** Version October 30th, 2009

*********************** **** Read Me First **** *********************** Version October 30th, 2009 *********************** **** Read Me First **** *********************** Version 2.0.0.0 October 30th, 2009 Introducing the Keithley IVI Driver for the 3390 Arbitrary Waveform Generator ----------------------------------------------------------------------

More information

Faster Time to Measurement Advances in LabVIEW Instrument Control

Faster Time to Measurement Advances in LabVIEW Instrument Control Faster Time to Measurement Advances in LabVIEW Instrument Control Instrument Control with LabVIEW LabVIEW can communicate with virtually any instrument Tools for parsing, analyzing, and presenting instrument

More information

IVI-3.4: API Style Guide

IVI-3.4: API Style Guide IVI Interchangeable Virtual Instruments IVI-3.4: API Style Guide October 19, 2018 Edition Revision 2.5 Important Information Warranty Trademarks The API Style Guide (IVI-3.4) is authored by the IVI Foundation

More information

IVI-4.1: IviScope Class Specification

IVI-4.1: IviScope Class Specification IVI Interchangeable Virtual Instruments IVI-4.1: IviScope lass Specification April 2009 Edition Revision 3.0 Important Information Warranty Trademarks The IviScope lass Specification (IVI-4.1) is authored

More information

Advance Technologies; Automate the World.

Advance Technologies; Automate the World. GPIB Getting Started Guide for LPCI-3488A and USB-3488A Manual Rev. 2.01 Revision Date: October 30, 2009 Part No: 50-1Z025-2010 Advance Technologies; Automate the World. Copyright 2009 ADLINK TECHNOLOGY

More information

Chapter 1 - What s in a program?

Chapter 1 - What s in a program? Chapter 1 - What s in a program? I. Student Learning Outcomes (SLOs) a. You should be able to use Input-Process-Output charts to define basic processes in a programming module. b. You should be able to

More information

IVI. Interchangeable Virtual Instruments. IVI-3.2: Inherent Capabilities Specification. Important Information. February 7, 2017 Edition Revision 2.

IVI. Interchangeable Virtual Instruments. IVI-3.2: Inherent Capabilities Specification. Important Information. February 7, 2017 Edition Revision 2. IVI Interchangeable Virtual Instruments IVI-3.2: Inherent Capabilities Specification February 7, 2017 Edition Revision 2.1 Important Information Warranty Trademarks The IVI-3.2: Inherent Capabilities Specification

More information

The Impact of Test Instrumentation with Distributed Processing Capabilities on Test Program Set (TPS) Architecture and Development

The Impact of Test Instrumentation with Distributed Processing Capabilities on Test Program Set (TPS) Architecture and Development The Impact of Test Instrumentation with Distributed Processing Capabilities on Test Program Set (TPS) Architecture and Development Michael McGoldrick Assembly Test Division Teradyne, Inc. North Reading,

More information

Problems with PSQL and Windows 10 Release 1803

Problems with PSQL and Windows 10 Release 1803 Problems with PSQL and Windows 10 Release 1803 A White Paper From For more information, see our web site at Problems with PSQL and Windows 10 Release 1803 Last Updated: June 26, 2018 (See Last Page) In

More information

NI PXI Contents CALIBRATION PROCEDURE

NI PXI Contents CALIBRATION PROCEDURE CALIBRATION PROCEDURE NI PXI-5422 Contents This document contains step-by-step instructions for writing a calibration procedure for the NI PXI-5422 arbitrary waveform generator. Conventions... 1 Introduction...

More information

Open Scene Graph DirectInput Joystick control

Open Scene Graph DirectInput Joystick control Open Scene Graph DirectInput Joystick control In this exercise you will add in joystick control using DirectInput. I have created a joystick control class to make it easier for you to use, but you can

More information

Agilent I/O Libraries Technical Overview

Agilent I/O Libraries Technical Overview Agilent I/O Libraries Technical Overview Agilent Technologies The Agilent I/O Libraries are the software that is common to the Agilent I/O hardware products -- the original Standard Instrument Control

More information

First C or C++ Lab Paycheck-V1.0 Using Microsoft Visual Studio

First C or C++ Lab Paycheck-V1.0 Using Microsoft Visual Studio C & C++ LAB ASSIGNMENT #1 First C or C++ Lab Paycheck-V1.0 Using Microsoft Visual Studio Copyright 2013 Dan McElroy Paycheck-V1.0 The purpose of this lab assignment is to enter a C or C++ into Visual Studio

More information

Assessing the use of IVI drivers in your test system: Determining when IVI is the right choice

Assessing the use of IVI drivers in your test system: Determining when IVI is the right choice Assessing the use of IVI drivers in your test system: Determining when IVI is the right choice Application Note If software reuse and system portability are important to your organization, it may be to

More information

Getting Started with IVI Drivers

Getting Started with IVI Drivers Getting Started with IVI Drivers Your Guide to Using IVI with Agilent VEE Pro Version 1.5 Copyright IVI Foundation, 2011 All rights reserved The IVI Foundation has full copyright privileges of all versions

More information

User Manual UM Rev D

User Manual UM Rev D WESTERN AVIONICS MIL-STD-1553 VXI (Model 2701) LabWindows/CVI Drivers P/N 1L01692H01 Rev 1.3 User Manual UM 01692 Rev D Western Avionics Ltd. 13/14 Shannon Free Zone Co. Clare Ireland 8 August 2000 TABLE

More information

ProDAQ 1630 VXI-1 Rev.4 Mainframe

ProDAQ 1630 VXI-1 Rev.4 Mainframe User Manual ProDAQ 1630 VXI-1 Rev.4 Mainframe PUBLICATION NUMBER: 1630-XX-UM-1000 Copyright, 2013, Bustec Production, Ltd. Bustec Production, Ltd. Bustec House, Shannon Business Park, Shannon, Co. Clare,

More information

INSTALLATION INSTRUCTIONS. General Information. System 40/45/50 Switch Cards. VISA Driver for Windows - pipx40. IVI Driver for Windows - pi40iv

INSTALLATION INSTRUCTIONS. General Information. System 40/45/50 Switch Cards. VISA Driver for Windows - pipx40. IVI Driver for Windows - pi40iv General Information System 40/45/50 Switch Cards Windows drivers are supplied for all common PXI development environments, and utility programs to assist in setting up and debugging your system These drivers

More information

Lab 1: Introduction to C Programming. (Creating a program using the Microsoft developer Studio, Compiling and Linking)

Lab 1: Introduction to C Programming. (Creating a program using the Microsoft developer Studio, Compiling and Linking) Lab 1: Introduction to C Programming (Creating a program using the Microsoft developer Studio, Compiling and Linking) Learning Objectives 0. To become familiar with Microsoft Visual C++ 6.0 environment

More information

SCPI-Recorder. Test Automation at Your Fingertips Application Note. Products: R&S SMW200A R&S SMA100B

SCPI-Recorder. Test Automation at Your Fingertips Application Note. Products: R&S SMW200A R&S SMA100B SCPI-Recorder Test Automation at Your Fingertips Application Note Products: R&S SMW200A R&S SMA100B This application note briefly summarizes the history of SCPI and outlines in which fields of application

More information

Systems Alliance VPP-4.3.2: VISA Implementation Specification for Textual Languages October 17, 2017 Revision 5.8

Systems Alliance VPP-4.3.2: VISA Implementation Specification for Textual Languages October 17, 2017 Revision 5.8 Systems Alliance VPP-4.3.2: VISA Implementation Specification for Textual Languages October 17, 2017 Revision 5.8 Systems Alliance VPP-4.3.2 Revision History This section is an overview of the revision

More information

TREX Set-Up Guide: Creating a TREX Executable File for Windows

TREX Set-Up Guide: Creating a TREX Executable File for Windows TREX Set-Up Guide: Creating a TREX Executable File for Windows Prepared By: HDR 1 International Boulevard, 10 th Floor, Suite 1000 Mahwah, NJ 07495 May 13, 2013 Creating a TREX Executable File for Windows

More information

Introduction to Open Scene Graph

Introduction to Open Scene Graph Introduction to Open Scene Graph The is an open source high performance 3D graphics toolkit, used by application developers in fields such as visual simulation, games, virtual reality, scientific visualization

More information

Keysight Technologies Migrating from the 34401A RS-232 Serial Interface to the Truevolt DMM 34461A USB/LAN Interface.

Keysight Technologies Migrating from the 34401A RS-232 Serial Interface to the Truevolt DMM 34461A USB/LAN Interface. Keysight Technologies Migrating from the 34401A RS-232 Serial Interface to the Truevolt DMM 34461A USB/LAN Interface Migration Guide Introduction The 34461A DMM is the next generation of 34401A that is

More information

OWASP 5/07/09. The OWASP Foundation OWASP Static Analysis (SA) Track Session 1: Intro to Static Analysis

OWASP 5/07/09. The OWASP Foundation  OWASP Static Analysis (SA) Track Session 1: Intro to Static Analysis Static Analysis (SA) Track Session 1: Intro to Static Analysis Eric Dalci Cigital edalci at cigital dot com 5/07/09 Copyright The Foundation Permission is granted to copy, distribute and/or modify this

More information

Easy Steps to Integrate the 34405A Multimeter into a System

Easy Steps to Integrate the 34405A Multimeter into a System Easy Steps to Integrate the 34405A Multimeter into a System Application Note Contents Introduction 1 Affordable and Feature-Rich Measurement Tool 1 USB 2.0 Interface Connection 1 Setting up a New System

More information

As CCS starts up, a splash screen similar to one shown below will appear.

As CCS starts up, a splash screen similar to one shown below will appear. APPENDIX A. CODE COMPOSER STUDIO (CCS) v5.1: A BRIEF TUTORIAL FOR THE OMAP-L138 A.1 Introduction Code Composer Studio (CCS) is Texas Instruments integrated development environment (IDE) for developing

More information

*********************** **** Read Me First **** *********************** Version August 1st, 2011

*********************** **** Read Me First **** *********************** Version August 1st, 2011 *********************** **** Read Me First **** *********************** Version 2.1.0.0 August 1st, 2011 Introducing the Keithley IVI Driver for the 3706 Switch Measure Unit ---------------------------------------------------------------------------

More information

Opening Microsoft Visual Studio. On Microsoft Windows Vista and XP to open the visual studio do the following:

Opening Microsoft Visual Studio. On Microsoft Windows Vista and XP to open the visual studio do the following: If you are a beginner on Microsoft Visual Studio 2008 then you will at first find that this powerful program is not that easy to use for a beginner this is the aim of this tutorial. I hope that it helps

More information

Systems Alliance. VPP-2: System Frameworks Specification

Systems Alliance. VPP-2: System Frameworks Specification Systems Alliance VPP-2: System Frameworks Specification Revision 7.0, October 19, 2018 VPP-2 Revision History This section is an overview of the revision history of the VPP-2 specification. Revision 1.0,

More information

Systems Alliance. VPP-2: System Frameworks Specification

Systems Alliance. VPP-2: System Frameworks Specification Systems Alliance VPP-2: System Frameworks Specification Revision 5.5 March 6, 2013 VPP-2 Revision History This section is an overview of the revision history of the VPP-2 specification. Revision 1.0, July

More information

Procedure to set up an HPIB 82350B card on an M57. M58 or C20x PC. Table 1: Parts required. Part Number Description Qty

Procedure to set up an HPIB 82350B card on an M57. M58 or C20x PC. Table 1: Parts required. Part Number Description Qty 1 OF 21 Procedure to set up an HPIB 82350B card on an M57. M58 or C20x PC Parts required Table 1: Parts required Part Number Description Qty 289000764 Kit, HPIB Card, Inter, PCI 1 Procedure The procedure

More information

Getting Started with IVI-COM Drivers for the Lambda Genesys Power Supply

Getting Started with IVI-COM Drivers for the Lambda Genesys Power Supply Page 1 of 17 1. Introduction This is a step-by-step guide to writing a program to remotely control the Genesys power supply using the Lambda IVI-COM drivers. This tutorial has instructions and sample code

More information

CS 220: Introduction to Parallel Computing. Input/Output. Lecture 7

CS 220: Introduction to Parallel Computing. Input/Output. Lecture 7 CS 220: Introduction to Parallel Computing Input/Output Lecture 7 Input/Output Most useful programs will provide some type of input or output Thus far, we ve prompted the user to enter their input directly

More information

Installation of Hot Disk v 7.3 and later on a PC with Windows 7, 8 or 10

Installation of Hot Disk v 7.3 and later on a PC with Windows 7, 8 or 10 Installation Instruction for Hot Disk TPS 7 2.1 2017-05-09 1(44) Installation of Hot Disk v 7.3 and later on a PC with Windows 7, 8 or 10 Installation Instruction for Hot Disk TPS 7 2.1 2017-05-09 2(44)

More information

Programming for the LabVIEW Real-Time Module Using LabWindows/CVI

Programming for the LabVIEW Real-Time Module Using LabWindows/CVI Application Note 182 Programming for the LabVIEW Real-Time Module Using LabWindows/CVI Introduction This document discusses using LabWindows/CVI to interface with RT Series hardware and to write DLLs to

More information

1.4 Managing Highly Automated Test Sequences with NI TestStand. Bridging Validation and Test with Common Software Technology

1.4 Managing Highly Automated Test Sequences with NI TestStand. Bridging Validation and Test with Common Software Technology 1.4 Managing Highly Automated Test Sequences with NI TestStand Bridging Validation and Test with Common Software Technology 61 Automated Tests versus Interactive or Automated Measurements Interactive Measurements

More information

IVI-4.8: IviSpecAn Class Specification

IVI-4.8: IviSpecAn Class Specification IVI Interchangeable Virtual Instruments IVI-4.8: IviSpecAn Class Specification October 14, 2016 Edition Revision 2.0 Copyright 2008-2011 IVI Foundation. All Rights Reserved. Important Information Warranty

More information

Getting Started with OpenDSS

Getting Started with OpenDSS Getting Started with OpenDSS Start your search for OpenDSS files on EPRI s link page: http://smartgrid.epri.com/simulationtool.aspx Downloads The Installer for the latest official release may be found

More information

NI-VISA for Windows 3.x WIN and GWIN Frameworks. The VXIplug&play software kit contains the following software and documentation components.

NI-VISA for Windows 3.x WIN and GWIN Frameworks. The VXIplug&play software kit contains the following software and documentation components. NATIONAL INSTRUMENTS The Software is the Instrument Read Me First Save this document for future reference. VXIplug&play Software Kit NI-VISA for Windows 3.x WIN and GWIN Frameworks Thank you for purchasing

More information

Computer Systems Assignment 2: Fork and Threads Package

Computer Systems Assignment 2: Fork and Threads Package Autumn Term 2018 Distributed Computing Computer Systems Assignment 2: Fork and Threads Package Assigned on: October 5, 2018 Due by: October 12, 2018 1 Understanding fork() and exec() Creating new processes

More information

PROGRAMMING WITH THE MICROSOFT.NET FRAMEWORK USING MICROSOFT VISUAL STUDIO 2005 Course No. MS4995A 5 Day PREREQUISITES COURSE OUTLINE

PROGRAMMING WITH THE MICROSOFT.NET FRAMEWORK USING MICROSOFT VISUAL STUDIO 2005 Course No. MS4995A 5 Day PREREQUISITES COURSE OUTLINE COURSE OVERVIEW This five-day instructor-led course enables developers who are migrating from a different development language, an earlier version of Visual Basic.NET or Visual C#, or who have completed

More information

NOCTURN XL: Getting Started. For Win 7 Evaluation GUI Version February 21, 2013 Frisco, Texas

NOCTURN XL: Getting Started. For Win 7 Evaluation GUI Version February 21, 2013 Frisco, Texas NOCTURN XL: Getting Started For Win 7 Evaluation GUI Version 0.9.6 February 21, 2013 Frisco, Texas Minimal Configuration to Operate Camera: Recommended minimal computer configuration Window 7 SP1 (32/64bits)

More information

C++ - OpenGL - Setting up Visual Studio

C++ - OpenGL - Setting up Visual Studio FAKULTI TEKNOLOGI MAKLUMAT DAN KOMUNIKASI BITM 3213 - INTERACTIVE COMPUTER GRAPHICS LAB SESSION 1 C++ - OpenGL - Setting up Visual Studio (FROM WEBSITE: http://www.badprog.com/c-opengl-setting-up-visual-studio)

More information

Agilent NFA Series Noise Figure Analyzers including the Agilent N8972A, N8973A, N8974A and N8975A NFA analyzers.

Agilent NFA Series Noise Figure Analyzers including the Agilent N8972A, N8973A, N8974A and N8975A NFA analyzers. Disclaimer: The Agilent NFA Microsoft Excel Data Acquisition Programming Example is provided "AS IS" for illustrative purposes only. Agilent Technologies makes no warranty with regard to programming examples.

More information

Outline. Computer programming. Debugging. What is it. Debugging. Hints. Debugging

Outline. Computer programming. Debugging. What is it. Debugging. Hints. Debugging Outline Computer programming Debugging Hints Gathering evidence Common C errors "Education is a progressive discovery of our own ignorance." Will Durant T.U. Cluj-Napoca - Computer Programming - lecture

More information

LabWindows /CVI Using the Latest ANSI C Tools for High-Performance Automated Test

LabWindows /CVI Using the Latest ANSI C Tools for High-Performance Automated Test LabWindows /CVI Using the Latest ANSI C Tools for High-Performance Automated Test Agenda Introduction to LabWindows/CVI and modular instruments Developing modular instrument applications Hybrid systems

More information

APPENDIX A. CODE COMPOSER STUDIO (CCS) v5: A BRIEF TUTORIAL FOR THE DSK6713

APPENDIX A. CODE COMPOSER STUDIO (CCS) v5: A BRIEF TUTORIAL FOR THE DSK6713 APPENDIX A. CODE COMPOSER STUDIO (CCS) v5: A BRIEF TUTORIAL FOR THE DSK6713 A.1 Introduction Code Composer Studio (CCS) is Texas Instruments integrated development environment (IDE) for developing routines

More information

Multithreading in LabWindows /CVI

Multithreading in LabWindows /CVI Overview Multithreading in LabWindows /CVI Multicore Programming Fundamentals White Paper Series While they are often used interchangeably, the terms multitasking, multithreading, and multiprocessing all

More information

Tools for Developing LXI Systems

Tools for Developing LXI Systems Tools for Developing LXI Systems BY PAUL G. SCHREIER, EDITOR W With more LXI hardware coming to market and engineers taking a closer look at this technology, questions from developers and system integrators

More information