Keysight Technologies Understanding the Programming Interfaces of PXI Instruments

Size: px
Start display at page:

Download "Keysight Technologies Understanding the Programming Interfaces of PXI Instruments"

Transcription

1 Keysight Technologies Understanding the Programming Interfaces of PXI Instruments Making PXI-based ATS Integration Easier Application Note

2 Introduction PXI-based automatic test systems (ATSs) are gaining the interest of test engineers, however the architecture and programming methods for these test systems are quite different than box-based ATSs. This application note explains the differences in system architectures and programming interfaces to help you understand and select the most appropriate programming interface (either SCPI or a direct access driver), for your application, and make your system integration job easier. PXI Automatic Test Systems Challenging Tradition Though rack-and-stack test systems based on box instruments are the majority of what is used in the market, more and more test engineers are transitioning to automatic test systems (ATSs) based on PXI or PXIe modular instruments. The increasing availability of RF and microwave PXI modules in recent years is helping to accelerate this transition. A few key factors are contributing to the rapid growth of PXI-based ATSs. One is the faster measurement speed of PXI instruments, which leverage the latest PC technologies such as PCI/PCIe buses and increasingly powerful central processing units (CPUs). The second reason for the growth of PXI-based ATSs is their compact size, complete with an industry-standard architecture and interface. These ATSs provide benefits like flexibility and scalability, which are desirable for testing multi-port devices such as phones and base stations that are adopting MIMO and beam forming. Their compact size also provides the smaller footprint desired in production, and the mobility desired by the military for on-site maintenance and trouble shooting. When migrating from a box instruments-based ATS to a PXI-based ATS, one challenge you may face is programming the modular instruments. Traditionally, SCPI has been the dominating programming interface for box instruments. It is relatively simple and familiar to all engineers working on test systems. In the modular world, there are multiple programming interface choices. While this provides more flexibility, it adds complexity. The intent of this paper is to describe the majority of these programming interfaces to help you to understand their differences, strengths, and weaknesses.

3 03 Keysight Understanding the Programming Interfaces of PXI Instruments - Application Note What Changes When Moving from a Rack-and-Stack System to a PXI-based ATS If you intend to migrate your ATS from a box-based rack-and-stack system to a PXI-based ATS, or build a new PXI-based ATS, understanding the following differences will be quite helpful. Figure 1 illustrates the hardware and software layers of a traditional box-based ATS, and how these layers are distributed inside PC and instruments. It should be noted that while an actual test system is likely to include multiple instruments, for simplification, Figure 1 shows only one instrument. Hardware and software layers - rack-and-stack Automatic test program I/O software Computer I/O hardware I/O cable (GPIB/LAN/USB) Measurement software Measurement hardware Box instrument Figure 1. Hardware and software layers in a box, or benchtop instrument-based rack-and-stack automatic test system.

4 04 Keysight Understanding the Programming Interfaces of PXI Instruments - Application Note What Changes When Moving from a Rack-and-Stack System to a PXI-based ATS (Continued) In Figure 1, the instrument and the PC are two separate items interconnected through either a GPIB, USB, or LAN cable, or possibly through a LAN or WAN network if they are geographically separated. For any box instrument, you can simply think about it as a two-layered product. The bottom layer is measurement hardware, which physically connects to the device under test (DUT) to either capture a signal from the DUT, or send a signal and stimulate the DUT. The upper layer is measurement software, dealing with hardware control, data processing, analysis, and the presentation of measurement results. It also provides the graphical user interface (GUI) and remote user interface (RUI). For simple instruments, like digital multi-meters and power meters, the measurement software layer can be very thin. It runs in a very simple embedded computing environment, like single chip microcomputer. The measurement software layer can also be very thick in more sophisticated instruments, like RF or microwave signal analyzers. These types of instruments need to deal with very complicated hardware control, calibration, data processing, measurement algorithms, and sophisticated GUIs and RUIs. To deal with this complexity, a complete and modern computer is typically inside the instrument, often running a powerful operating system such as Microsoft Windows. A separate PC is used for remote control of instruments and test automation. The PC runs the automatic test program (ATP), which sends a series of commands to the instrument and reads the results from instrument. Computer I/O hardware is needed to enable the physical connection to the instrument. This can be a GPIB card, LAN port, or USB port, which is chosen to match the I/O hardware type provided by the instrument. I/O software is a bridge layer between the ATP layer and the I/O hardware, which provides libraries like VISA to ensure commands and data can be properly transported between the ATP and instruments over I/O hardware and cables. According to the I/O type and instrument address, the I/O software packages commands and data into the proper format. For instance, IP packages and routes commands and data to the LAN port with the proper IP address. There are some well-known I/O software on market, includes Keysight Technologies, Inc. s IO libraries and National Instrument s Measurement and Automation Explorer (MAX).

5 05 Keysight Understanding the Programming Interfaces of PXI Instruments - Application Note What Changes When Moving from a Rack-and-Stack System to a PXI-based ATS (Continued) Figure 2 illustrates the layered structure of a PXI-based ATS. You will notice differences when comparing it to box instrument ATSs. Hardware and software layers - PXI-based Automatic test program I/O software Measurement software Software in controller I/O software Instrument PXI or PXIe bus Measurement hardware Module Controller Chassis Module Figure 2. A PXI-based ATS

6 06 Keysight Understanding the Programming Interfaces of PXI Instruments - Application Note What Changes When Moving from a Rack-and-Stack System to a PXI-based ATS (Continued) In a modular world, the two instrument layers, measurement hardware, and measurement software are allocated into two physical items: the module and the controller. The measurement hardware is in the form of a single module or multiple modules, while measurement software is installed in the controller, which can be either an embedded PC inside a PXI chassis, or a commercial PC connected to the chassis via an interface adaptor card. The module and controller are interconnected via a PXI or PXIe bus on the backplanes which evolved from the PCI or PCIe bus and has a unique trigger and CLK bus designed specifically for instruments. For PXI, the module is primarily measurement hardware. In most cases, the measurement software is moved into the controller, particularly in sophisticated devices such as an RF signal analyzer with a very thick measurement software layer. There also is a trend of moving the measurement algorithm into field programmable gate array (FPGA) to improve speed. You may notice that the controller is a computer shared by the ATP and the measurement software for all modules; unlike a box-based ATS that has separate computing devices: one for the ATP and one for each instrument. Measurement software and hardware, which are in single in box instruments, now are separated into two physical places for PXI. Measurement software is in the controller. Hardware is in the module. As a result, the module is unable to perform as a fully-functional instrument unless combined with the measurement software resident in the controller. Since in most cases, the ATP and measurement software are running on the same controller, I/O hardware is no longer necessary. However I/O software is still needed. It is sandwiched either between the ATP and measurement software, or between the measurement software and measurement hardware, or both, depending on the vendor s software architecture. The I/O software enables communication between ATP, measurement software, and measurement hardware in order for them to work properly, and ensures all PXI resources are well managed. This change in connection between the ATP and instrument is the major difference between the programming interfaces of box and modular instruments, which will be discussed later in this application note.

7 07 Keysight Understanding the Programming Interfaces of PXI Instruments - Application Note Application Development Environment and Programming Interface Types This section explains how the ATP, measurement hardware, and software operate together through a variety of programming interfaces. No matter how many programming interface types you might use, there are only two fundamental programming interface types for any programmable instrument: message-based SCPI or a direct-access driver. Message-based programming communicates through high-level, English-like commands sent by the computer to the instrument in a serial fashion. The most widely deployed command language is SCPI, which uses plain text for sending commands to instruments to set parameters or query results. Programming via a direct-access driver is completely different. The instrument is viewed as a set of registers in the controller s shared memory space. Reading from and writing to these memory addresses causes the instrument to execute desired functions. These are often complex operations that are composed of many memory reads and writes, and that often use bit-mapped registers and binary data. Due to this complexity, register-based instruments typically are delivered with a software driver that executes the instrument function. In addition to the direct register access to the instrument s hardware parameter settings, drivers may also directly access/call some software components for measurement features implemented purely by software, or the driver may be a piece of software code written for a specific measurement feature. Even if an instrument uses message-based SCPI as programming interface, it eventually needs to directly access the memory of hardware inside the instrument after the text commands are parsed. This happens inside the tester and is invisible to test engineers. As illustrated by Table 1, message-based SCPI and a direct access driver have their own strengths and weaknesses, and are suitable for different application scenarios. Table 1. Comparison of SCPI and a direct access driver Strength Weakness Message-based SCPI Most versatile. Works between any OS and programming environment Controller PC can be the same as Slower speed Text-based syntaxes are errorprone during ATP coding or different to computing device of instrument Being widely used and familiar by all ATP programmers Direct access driver Much faster in executing speed Sophisticate parameters coupling rule needs to be handled by a system developer Only works where the ATP and measurement software are in same PC Dependent on OS and programming environment

8 08 Keysight Understanding the Programming Interfaces of PXI Instruments - Application Note Application Development Environment and Programming Interface Types (Continued) With few exceptions, box instruments use message-based SCPI as the primary programming interface, which allows an independent PC to control them easily. SCPI has been widely adopted by the test and measurement industry and is managed by the IVI Foundation. Direct access drivers are being used for most PXI instruments that are relatively simple, while SCPI is also used in PXI instruments, particularly sophisticated modular instruments like RF signal analyzers. SCPI also allows easier reuse of existing measurement science and code compatibility with box-based ATS. For example, the Keysight. M9290A CXA-m X-Series PXIe signal analyzer, is purely SCPI-based, and it can be programmed either with SCPI commands or drivers wrapped from SCPI commands. The Keysight M939xA vector signal analyzer uses a mix of SCPIs and direct access drivers. Though there are only two fundamental programming interface types provided by instruments, from an application development environment (ADE) point of view, there are many varieties of programming interfaces. These varieties are developed for each kind of ADE. For example, LabVIEW drivers for LabVIEW, IVI-COM and IVI-C drivers are defined and developed by IVI Foundation for better inter-exchangeability. Ultimately, they are wraps of SCPI or direct access driver programming interfaces previously mentioned. Each ADE has its natively-supported programming interface, which provides the best usability in that ADE. For compatibility consideration, many ADEs, for instance Visual Studio and LabVIEW, support multiple programming interfaces. Programming interfaces like SCPI, IVI-COM, and IVI-C drivers are supported by multiple ADEs. Table 2 shows the support matrix between ADEs and APIs. Table 2. Support matrix between ADEs and programming interfaces Programming interfaces O: Native support V : Support Application development environments Visual studio Lab Windows LabVIEW VEE MATLAB... SCPI O O V V V IVI-COM driver O V V V V IVI-C driver V O V V LabVIEW driver O VEE panel driver O MATLAB driver O...

9 09 Keysight Understanding the Programming Interfaces of PXI Instruments - Application Note Application Development Environment and Programming Interface Types (Continued) The term driver is so widely used that when you talk about drivers, it may not necessarily be in reference to a registered-access driver. Driver can also refer to wraps of SCPIs. Some of the most popular programming interfaces can be transferred between each other. For example, SCPI can be wrapped into an IVI-COM driver or LabVIEW driver, and IVI-COM or IVI-C can be wrapped into a LabVIEW driver. Figure 3 shows an example of how SCPI and a register-access driver are wrapped into an IVI-COM, IVI-C, and LabVIEW drivers. All of the drivers work under LabVIEW though there are differences in usability. In addition to the widely-used programming interfaces mentioned above, new programming approaches are emerging in the test and measurement industry that have yet to be standardized. Since the measurement software and ATP reside in same computer, it is technically possible for the measurement software and ATP software to interact with each other through ways commonly used in the software programming industry; like calling DLLs of COM components, or.net API, or controls. However, such approaches still rely on specific vendors, and there is no common method for programming between two types of measurement software that is defined by the test and measurement industry. On the other hand, SCPI or IVI drivers are defined by VISA Foundation and these standards for drivers are used by all test and measurement vendors. This application note only covers the programming approaches defined by test and measurement industry; not the alternative programming approaches adopted in software industry, though they might be more flexible and efficient. LabVIEW ADE LabVIEW driver LabVIEW driver IVI-COM driver IVI-C driver Programming interfaces SCPI Register Message based commands access Measurement hardware and software Register access Modular instruments Figure 3. An example of how a programming interface is supported by LabVIEW and how the interface can be converted to different types of interfaces

10 10 Keysight Understanding the Programming Interfaces of PXI Instruments - Application Note Tips for Building PXIe-based ATSs With an understanding of the structural difference between box-based, rack-and-stack ATSs and PXI-based ATSs, and the variety programming interfaces, the question is, Which programming interface shall I select? The following are tips and questions to think about before you start integrating your system. 1. Which should you choose: SCPI or a direct access driver? To help you decide, the most important question to consider is, Are you mainly pursuing measurement features or highest throughput? You may desire both of them, but which one is more critical? If you are pursuing extremely high throughput, a direct-access driver is your ideal solution. While if ready-to-use features is more critical than speed, you may be better served by an SCPI-based approach due to it long-established rich and mature measurement science. In some cases, you may want to adopt them in mix. 2. Do you just want to build the ATS, with ready-to-use features from instrument vendors, or do you need to develop some proprietary measurement algorithms? SCPI-based instruments are more closed than direct-access-based modular instruments when dealing with proprietary algorithms. That typically makes direct-access-based modules a better choice. If proprietary algorithms are not need, you may find an SCPI-based module is easier to use. 3. Is code compatibility to box instruments desired? Code compatibility is a key benefit for test system programmers if they are building an ATS evolved from old test systems. This is typically the case for production ATSs or military device test systems. 4. Which ADEs should be used? Each ADE has its own strength and weakness. Familiarity with one ADE may make it your preferred choice, but matching the ADE s strength and weakness to your own applications and modular instrument s interfaces is more important. A wise procedure is to address the above three questions first, then use that information to select the best-suited ADE. Choosing the ADE first will likely cause difficulties when selecting instruments and require greater effort when developing custom algorithms. In a real world, you might be forced to use a mixed-box instrument and modular instruments to build an ATS, and/or use mixed programming approaches. For example, you may use IVI drivers based on direct register access for fastest speed, and use SCPI or SCPI-based drivers for existing measurement features provided by vendor. In some cases, which you should try best to avoid, you may be forced to build your own drivers or proprietary measurement algorithm to handle desired measurement capabilities which are not provided by vendors.

11 11 Keysight Understanding the Programming Interfaces of PXI Instruments - Application Note Conclusion Keysight provides both box instruments and PXI instruments. Decades of experience, accumulated insights in test and measurement, rich measurement science and features, and practical programming interfaces, are shared among these two form factors. As a result, working with Keysight can help you minimize the challenges and difficulties of migrate ATS from box based to PXI-based.

12 12 Keysight Understanding the Programming Interfaces of PXI Instruments - Application Note Evolving Since 1939 Our unique combination of hardware, software, services, and people can help you reach your next breakthrough. We are unlocking the future of technology. From Hewlett-Packard to Agilent to Keysight. For more information on Keysight Technologies products, applications or services, please contact your local Keysight office. The complete list is available at: Americas Canada (877) Brazil Mexico United States (800) mykeysight A personalized view into the information most relevant to you. Register your products to get up-to-date product information and find warranty information. Keysight Services Keysight Services can help from acquisition to renewal across your instrument s lifecycle. Our comprehensive service offerings onestop calibration, repair, asset management, technology refresh, consulting, training and more helps you improve product quality and lower costs. Keysight Assurance Plans Up to ten years of protection and no budgetary surprises to ensure your instruments are operating to specification, so you can rely on accurate measurements. Keysight Channel Partners Get the best of both worlds: Keysight s measurement expertise and product breadth, combined with channel partner convenience. Asia Pacific Australia China Hong Kong India Japan 0120 (421) 345 Korea Malaysia Singapore Taiwan Other AP Countries (65) Europe & Middle East Austria Belgium Finland France Germany Ireland Israel Italy Luxembourg Netherlands Russia Spain Sweden Switzerland Opt. 1 (DE) Opt. 2 (FR) Opt. 3 (IT) United Kingdom For other unlisted countries: (BP ) DEKRA Certified ISO9001 Quality Management System Keysight Technologies, Inc. DEKRA Certified ISO 9001:2015 Quality Management System This information is subject to change without notice. Keysight Technologies, 2017 Published in USA, December 1, EN

Keysight Technologies 8163B Lightwave Multimeter 8164B Lightwave Measurement System 8166B Lightwave Multichannel System.

Keysight Technologies 8163B Lightwave Multimeter 8164B Lightwave Measurement System 8166B Lightwave Multichannel System. Keysight Technologies 8163B Lightwave Multimeter 8164B Lightwave Measurement System 8166B Lightwave Multichannel System Data Sheet 02 Keysight 8163B Lightwave Multimeter, 8164B Lightwave Measurement System,

More information

Keysight Technologies

Keysight Technologies Keysight Technologies M9161D PXI Dual SP4T Solid State Switch Module 50 MHz to 20 GHz Data Sheet Introduction Description The Keysight Technologies, Inc. M9161D is a one slot PXI Dual SP4T solid state

More information

Keysight Technologies Accelerate Program Development using Command Expert with Keysight VEE Pro. Application Note

Keysight Technologies Accelerate Program Development using Command Expert with Keysight VEE Pro. Application Note Keysight Technologies Accelerate Program Development using Command Expert with Keysight VEE Pro Application Note This application note contains two main sections: Command Expert Basics Introduces you to

More information

Keysight Technologies Accelerate Program Development using Keysight Command Expert with LabVIEW. Application Note

Keysight Technologies Accelerate Program Development using Keysight Command Expert with LabVIEW. Application Note Keysight Technologies Accelerate Program Development using Keysight Command Expert with LabVIEW Application Note This application note contains two main sections: Command Expert Basics Introduces you to

More information

Keysight N2753A and N2754A Windows XP to Windows 7 Upgrade Kits For Infiniium 9000, 90000, and X-Series Oscilloscopes. Configuration Guide

Keysight N2753A and N2754A Windows XP to Windows 7 Upgrade Kits For Infiniium 9000, 90000, and X-Series Oscilloscopes. Configuration Guide Keysight N2753A and N2754A Windows XP to Windows 7 Upgrade Kits For Infiniium 9000, 90000, and 90000 X-Series Oscilloscopes Configuration Guide 02 Keysight N2753A and N2754A Windows XP to Windows 7 Upgrade

More information

Overview. Applications

Overview. Applications Keysight Technologies Interface Modules and Adapters for PXIe and AXIe Systems Remote PC PCIe Host Desktop Adapters for PXIe and AXIe Systems M9048A, M9048B & M9049A System and Cable Modules for PXIe Systems

More information

Keysight Technologies Impedance Analyzers and Vector Network Analyzers

Keysight Technologies Impedance Analyzers and Vector Network Analyzers Keysight Technologies Impedance Analyzers and Vector Network Analyzers Optimizing Connections Using USB and LAN Interfaces Application Note Introduction Since the Keysight E4990A and E4991B impedance analyzers

More information

Keysight Technologies Using Source/Measure Unit as an Ammeter

Keysight Technologies Using Source/Measure Unit as an Ammeter Keysight Technologies Using Source/Measure Unit as an Ammeter B2900A Precision Source/Measure Unit Demo Guide 02 Keysight Using Source/Measure Unit as an Ammeter Demo Guide Introduction The Keysight B2900A

More information

Keysight Technologies Using FieldFox RF and Microwave Analyzers with Mass Storage Devices. Application Brief

Keysight Technologies Using FieldFox RF and Microwave Analyzers with Mass Storage Devices. Application Brief Keysight Technologies Using FieldFox RF and Microwave Analyzers with Mass Storage Devices Application Brief Introduction This document describes the capabilities of using FieldFox with mass storage devices.

More information

Keysight Technologies FPGA Implementation of a LUT-Based Digital Pre-Distortion Using M3602A FPGA Design Environment.

Keysight Technologies FPGA Implementation of a LUT-Based Digital Pre-Distortion Using M3602A FPGA Design Environment. Keysight Technologies FPGA Implementation of a LUT-Based Digital Pre-Distortion Using M3602A FPGA Design Environment Application Note 02 Keysight FPGA Implementation of a LUT-Based Digital Pre-Distortion

More information

Keysight N8843A I3CSM Protocol Trigger and Decode for Infiniium Oscilloscope. Data Sheet

Keysight N8843A I3CSM Protocol Trigger and Decode for Infiniium Oscilloscope. Data Sheet Keysight N8843A I3CSM Protocol Trigger and Decode for Infiniium Oscilloscope Data Sheet 02 Keysight N8843A I3C SM Protocol Trigger and Decode for Infiniium Oscilloscope - Data Sheet This application is

More information

Keysight E6962A Automotive Ethernet Rx Compliance Solution

Keysight E6962A Automotive Ethernet Rx Compliance Solution Keysight E6962A Automotive Ethernet Rx Compliance Solution Easy and repeatable 100BASE-T1 design validation for receiver components Data Sheet Introduction The Keysight E6962A automotive Ethernet Rx validation

More information

Keysight Technologies Monitoring the Control Panel Temperature

Keysight Technologies Monitoring the Control Panel Temperature Keysight Technologies Monitoring the Control Panel Temperature Capture the temperature easily with Keysight s handheld digital multimeters during troubleshooting Solution Brochure In a world governed by

More information

Keysight Technologies 5G RF DVT Toolset. Solution Brief

Keysight Technologies 5G RF DVT Toolset. Solution Brief Keysight Technologies 5G RF DVT Toolset Solution Brief 02 Keysight 5G RF DVT Toolset - Solution Brief The Fastest Path to 5G 5G brings a vast variety of services classified under three use case categories:

More information

Keysight Technologies Faster Data Analysis with Graphical Digital Multimeter Measurements

Keysight Technologies Faster Data Analysis with Graphical Digital Multimeter Measurements Keysight Technologies Faster Data Analysis with Graphical Digital Multimeter Measurements Application Brief Test Challenges: Analyzing changes with time Identifying noise in your design 02 Keysight Faster

More information

Keysight Technologies PC Tested Configurations with PXI/AXIe Chassis

Keysight Technologies PC Tested Configurations with PXI/AXIe Chassis Keysight Technologies PC Tested Configurations with PXI/AXIe Chassis M9010A PXIe Chassis M9018B PXIe Chassis M9019A PXIe Chassis M9502A AXIe Chassis M9505A AXIe Chassis M9514A AXIe Chassis Technical Overview

More information

Keysight Technologies N6472A IEEE802.3bs/cd Compliance Application

Keysight Technologies N6472A IEEE802.3bs/cd Compliance Application Keysight Technologies N6472A IEEE802.3bs/cd Compliance Application For Infiniium Z-Series Oscilloscopes Data Sheet Characterize electrical pulse amplitude modulated (PAM) and Non-Return-to-Zero (NRZ) signals

More information

Keysight Technologies Current Drain Analysis Enhances WLAN Network Card Design and Test. Application Note

Keysight Technologies Current Drain Analysis Enhances WLAN Network Card Design and Test. Application Note Keysight Technologies Current Drain Analysis Enhances WLAN Network Card Design and Test Application Note 02 Keysight Current Drain Analysis Enhances WLAN Network Card Design and Test - Application Note

More information

Keysight N8840A USB Power Delivery Electrical and Protocol Compliance Test Software

Keysight N8840A USB Power Delivery Electrical and Protocol Compliance Test Software Keysight N8840A USB Power Delivery Electrical and Protocol Compliance Test Software For Infiniium Oscilloscopes Data Sheet 02 Keysight N8840A USB Power Delivery Electrical and Protocol Compliance Test

More information

Keysight Technologies EPM and EPM-P Series Power Meters E-Series Power Sensors. Configuration Guide

Keysight Technologies EPM and EPM-P Series Power Meters E-Series Power Sensors. Configuration Guide Keysight Technologies EPM and EPM-P Series Power Meters E-Series Power Sensors Configuration Guide Introduction This configuration guide describes the standard configurations, options, and compatible accessories

More information

Keysight Technologies N8806A User Defined Function for Editing and Execution for Infiniium Oscilloscopes. Data Sheet

Keysight Technologies N8806A User Defined Function for Editing and Execution for Infiniium Oscilloscopes. Data Sheet Keysight Technologies N8806A User Defined Function for Editing and Execution for Infiniium Oscilloscopes Data Sheet Introduction Create your own custom functions (or modify included functions) using the

More information

Keysight Technologies UXG Agile Signal Generator, Modified Version N5191A

Keysight Technologies UXG Agile Signal Generator, Modified Version N5191A Keysight Technologies UXG Agile Signal Generator, Modified Version N5191A Configuration Guide This configuration guide will help you determine which performance options, accessories, and services to include

More information

Keysight E4991B Impedance Analyzer

Keysight E4991B Impedance Analyzer Keysight E4991B Impedance Analyzer 1 MHz to 500 M/1 G/3 GHz Configuration Guide 02 Keysight E4991B Impedance Analyzer - Configuration Guide Ordering Guide The following steps will guide you through configuring

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

Keysight Technologies Migrating from the U8903A to the New U8903B Performance Audio Analyzer

Keysight Technologies Migrating from the U8903A to the New U8903B Performance Audio Analyzer Keysight Technologies Migrating from the U8903A to the New U8903B Performance Audio Analyzer Selection Guide U8903A audio analyzer U8903B performance audio analyzer Introduction The Keysight Technologies,

More information

Keysight Technologies Increasing Manufacturing Throughput of Automotive Controllers

Keysight Technologies Increasing Manufacturing Throughput of Automotive Controllers Keysight Technologies Increasing Manufacturing Throughput of Automotive Controllers Application Note Using the Keysight TS-5400 high performance PXI functional test system for multiple DUTs Introduction

More information

Keysight L4445A Microwave Switch/Attenuator Driver. Data Sheet

Keysight L4445A Microwave Switch/Attenuator Driver. Data Sheet Keysight L4445A Microwave Switch/Attenuator Driver Data Sheet Introduction Microwave switch/attenuator driver offers support of most common microwave switches with distribution boards for easy configuration.

More information

Keysight Technologies N8825A/B Infiniium 10BASE-T / 100BASE-TX Ethernet Decoder. Data Sheet

Keysight Technologies N8825A/B Infiniium 10BASE-T / 100BASE-TX Ethernet Decoder. Data Sheet Keysight Technologies N8825A/B Infiniium 10BASE-T / 100BASE-TX Ethernet Decoder Data Sheet Introduction The N8825A/B 10BASE-T/100BASE-TX Ethernet decoder allows you to view Ethernet packet data transmitted

More information

Demo Guide. Keysight Multi-Operator with M937xA PXIe Vector Network Analyzers

Demo Guide. Keysight Multi-Operator with M937xA PXIe Vector Network Analyzers Demo Guide Keysight Multi-Operator with M937xA PXIe Vector Network Analyzers Table of Contents Preparation for Demo... 3 Equipment Requirements... 3 Setup Four Operators Configuration Using 4 x 4-Ports

More information

Keysight Technologies E3620A and E3630A Non-programmable DC Power Supplies. Data Sheet

Keysight Technologies E3620A and E3630A Non-programmable DC Power Supplies. Data Sheet Keysight Technologies and E3630A Non-programmable DC Power Supplies Data Sheet 02 Keysight and E3630A Non-programmable DC Power Supplies Data Sheet Reliable Power, Repeatable Results Linear power supply

More information

Keysight Technologies The Advantage of Universal Inputs in Data Acquisition Systems

Keysight Technologies The Advantage of Universal Inputs in Data Acquisition Systems Keysight Technologies The Advantage of Universal Inputs in Data Acquisition Systems Application Brief Test Challenges: Measure multiple sensors and signal types 02 Keysight The Advantage of Universal Inputs

More information

Keysight U5340A FPGA Development Kit for High-Speed Digitizers

Keysight U5340A FPGA Development Kit for High-Speed Digitizers Keysight U5340A FPGA Development Kit for High-Speed Digitizers 02 Keysight U5340A FPGA Development Kit for High-Speed Digitizers - Brochure Helping You Achieve Greater Performance The FPGA Development

More information

Keysight B4655A FPGA Dynamic Probe for Xilinx. Data Sheet

Keysight B4655A FPGA Dynamic Probe for Xilinx. Data Sheet Keysight B4655A FPGA Dynamic Probe for Xilinx Data Sheet 02 Keysight B4655A FPGA Dynamic Probe for Xilinx - Data Sheet The Challenge You rely on the insight a logic analyzer provides to understand the

More information

Keysight Technologies VoLTE Battery Test, Reference Solution

Keysight Technologies VoLTE Battery Test, Reference Solution Keysight Technologies VoLTE Battery Test, Reference Solution Solution Brochure The VoLTE battery test reference solution implements battery performance test plan and output results to a required test report.

More information

Keysight Technologies N4000A, N4001A, N4002A SNS Series Noise Sources

Keysight Technologies N4000A, N4001A, N4002A SNS Series Noise Sources Keysight Technologies N4000A, N4001A, N4002A SNS Series Noise Sources 10 MHz to 26.5 GHz Technical Overview 02 Keysight N4000A, N4001A, N4002A SNS Series Noise Sources - Technical Overview Noise Sources

More information

Keysight E5063A ENA Series Network Analyzer

Keysight E5063A ENA Series Network Analyzer Keysight E5063A ENA Series Network Analyzer 100 khz to 500 M/1.5 G/3 G/4.5 G/6.5 G/8.5 G/14 G/18 GHz Configuration Guide 02 Keysight E5063A ENA Series Network Analyzer - Configuration Guide Ordering Guide

More information

Keysight M9036A PXIe Embedded Controller

Keysight M9036A PXIe Embedded Controller Keysight M9036A PXIe Embedded Controller 2.4 GHz Dual-Core, 4 GB Data Sheet Overview The Keysight Technologies, Inc. M9036A is an embedded PXIe PC controller which enables a compact platform solution.

More information

Keysight Technologies FPGA Circuit Design: Overcoming Power-Related Challenges. Application Note

Keysight Technologies FPGA Circuit Design: Overcoming Power-Related Challenges. Application Note Keysight Technologies FPGA Circuit Design: Overcoming Power-Related Challenges Application Note Introduction When you are designing, field-programmable gate array (FPGA) circuits, it is important to pay

More information

Keysight Technologies E4980A Precision LCR Meter 20 Hz to 2 MHz. E4980AL Precision LCR Meter 20 Hz to 300 khz/500 khz/1 MHz. Configuration Guide

Keysight Technologies E4980A Precision LCR Meter 20 Hz to 2 MHz. E4980AL Precision LCR Meter 20 Hz to 300 khz/500 khz/1 MHz. Configuration Guide Keysight Technologies E4980A Precision LCR Meter 20 Hz to 2 MHz E4980AL Precision LCR Meter 20 Hz to 300 khz/500 khz/1 MHz Configuration Guide 02 Keysight E4980A/E4980AL Precision LCR Meters - Configuration

More information

Keysight Technologies

Keysight Technologies Keysight Technologies FET Characterization Using the B2900A Series of SMUs Technical Overview Introduction Keysight B2901/02/11/12A Precision Source/Measure Unit Keysight B2901A Precision SMU, 1ch, 100

More information

Keysight N8841A CAUI-4 Electrical Performance Validation and Conformance Software

Keysight N8841A CAUI-4 Electrical Performance Validation and Conformance Software Keysight N8841A CAUI-4 Electrical Performance Validation and Conformance Software For Infiniium Oscilloscopes Data Sheet 02 Keysight N8841A CAUI-4 Electrical Performance Validation and Conformance Software

More information

Keysight KS8400A Test Automation Platform 2017 Developer s System Software. Technical Overview

Keysight KS8400A Test Automation Platform 2017 Developer s System Software. Technical Overview Keysight KS8400A Test Automation Platform 2017 Developer s System Software Technical Overview 02 Keysight KS8400A Test Automation Platform 2017 Developer s System Software - Technical Overview Product

More information

Keysight Technologies Accelerate Program Development using Command Expert with Keysight VEE Pro. Application Note

Keysight Technologies Accelerate Program Development using Command Expert with Keysight VEE Pro. Application Note Keysight Technologies Accelerate Program Development using Command Expert with Keysight VEE Pro Application Note This application note contains two main sections: Command Expert Basics Introduces you to

More information

Keysight Technologies

Keysight Technologies Keysight Technologies B4610A Data Import Tool for Offline Viewing and Analysis Data Sheet Introduction Increase your team s productivity and equipment usage View and analyze acquired data when the oscilloscope

More information

Keysight Technologies N5394A DVI Electrical Performance Validation and Compliance Software for Infiniium Oscilloscopes. Data Sheet

Keysight Technologies N5394A DVI Electrical Performance Validation and Compliance Software for Infiniium Oscilloscopes. Data Sheet Keysight Technologies N5394A DVI Electrical Performance Validation and Compliance Software for Infiniium Oscilloscopes Data Sheet 02 Keysight N5394A DVI Electrical Performance Validation and Compliance

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

Keysight Technologies The Touch Screen Revolution in Test and Measurement. Application Note

Keysight Technologies The Touch Screen Revolution in Test and Measurement. Application Note Keysight Technologies The Touch Screen Revolution in Test and Measurement Application Note Introduction Touch screens are slowly but surely creeping into every aspect of people s day to day lives. It is

More information

Keysight Technologies M9309A PXIe Vector Network Analyzer Synthesizer

Keysight Technologies M9309A PXIe Vector Network Analyzer Synthesizer Keysight Technologies M9309A PXIe Vector Network Analyzer Synthesizer 187.5 MHz to 6 GHz Data Sheet 02 Keysight M9309A PXIe Vector Network Analyzer Synthesizer - Data Sheet Overview The Keysight Technologies,

More information

Keysight Technologies PROPSIM F64 5G Channel Emulation Solution - F8800A

Keysight Technologies PROPSIM F64 5G Channel Emulation Solution - F8800A Keysight Technologies PROPSIM F64 5G Channel Emulation Solution - F8800A 02 Keysight PROPSIM F64 5G Channel Emulation Solution - F8800A - Brochure 5G NR End-to-End Real-World Performance Testing at Sub

More information

Keysight DSOX4USBSQ and DSOX6USBSQ USB 2.0 Signal Quality Test Option for 4000 and 6000 X-Series. Data Sheet

Keysight DSOX4USBSQ and DSOX6USBSQ USB 2.0 Signal Quality Test Option for 4000 and 6000 X-Series. Data Sheet Keysight DSOX4USBSQ and DSOX6USBSQ USB 2.0 Signal Quality Test Option for 4000 and 6000 X-Series Data Sheet Introduction The low-speed, full-speed, and hi-speed USB 2.0 serial bus is used today for not

More information

Keysight Technologies TS-8989 System Integration Guide. Application Note

Keysight Technologies TS-8989 System Integration Guide. Application Note Keysight Technologies TS-8989 System Integration Guide Application Note Introduction In today s manufacturing environment, floor space is an increasingly invaluable variable in the cost of test equation.

More information

Keysight N5435A Infiniium Server-Based License for Infiniium Oscilloscopes

Keysight N5435A Infiniium Server-Based License for Infiniium Oscilloscopes Keysight N5435A Infiniium Server-Based License for Infiniium Oscilloscopes Data Sheet License Introduction The Keysight Technologies, Inc. N5435A Infiniium server-based allows you to move your oscilloscope

More information

Keysight E6964A Automotive Ethernet MDI S-parameter Compliance Solution

Keysight E6964A Automotive Ethernet MDI S-parameter Compliance Solution Keysight E6964A Automotive Ethernet MDI S-parameter Compliance Solution Medium Dependent Interface (MDI) S-parameter testing made more accurate for components being tested for 100BASE-T1 or BroadR-Reach

More information

Keysight Technologies VSA Software

Keysight Technologies VSA Software Keysight Technologies 89600 VSA Software Configuration Guide This Keysight 89600 VSA software configuration guide will help you configure your new or existing 89600 VSA with the measurement options, licenses,

More information

Keysight Technologies Accelerate Program Development using Keysight Command Expert with MATLAB. Application Note

Keysight Technologies Accelerate Program Development using Keysight Command Expert with MATLAB. Application Note Keysight Technologies Accelerate Program Development using Keysight Command Expert with MATLAB Application Note Introduction Keysight Command Expert for fast and easy instrument control! Keysight Technlologies,

More information

Keysight Technologies E4982A LCR Meter

Keysight Technologies E4982A LCR Meter Keysight Technologies E4982A LCR Meter 1 MHz to 300 MHz/500 MHz/1 GHz/3 GHz Coniguration Guide 2 Keysight E4982A LCR Meter 1 MHz to 300 MHz/500 MHz/1 GHz/3 GHz - Coniguration Guide Ordering guide The following

More information

Keysight Technologies GSM/W-CDMA SMS Testing with Wireless Test Managers (WTMs) Application Note

Keysight Technologies GSM/W-CDMA SMS Testing with Wireless Test Managers (WTMs) Application Note Keysight Technologies GSM/W-CDMA SMS Testing with Wireless Test Managers (WTMs) Application Note Introduction Two Quick Fixed Engineerings (QFEs) for the Keysight Technologies, Inc. Wireless Test Managers

More information

Keysight Technologies Methods for Characterizing and Tuning DC Inrush Current. Application Brief

Keysight Technologies Methods for Characterizing and Tuning DC Inrush Current. Application Brief Keysight Technologies Methods for Characterizing and Tuning DC Inrush Current Application Brief Introduction Inrush current or input surge current refers to the momentarily large surge current that occurs

More information

Keysight Technologies MXG X-Series Signal Generators N5181B Analog & N5182B Vector

Keysight Technologies MXG X-Series Signal Generators N5181B Analog & N5182B Vector Keysight Technologies MXG X-Series Signal Generators N5181B Analog & N5182B Vector Configuration Guide This configuration guide will help you determine which performance options, software applications,

More information

Keysight Technologies On-Wafer Testing of Opto-Electronic Components Using the Lightwave Component Analyzers. Application Note

Keysight Technologies On-Wafer Testing of Opto-Electronic Components Using the Lightwave Component Analyzers. Application Note Keysight Technologies On-Wafer Testing of Opto-Electronic Components Using the Lightwave Component Analyzers Application Note Introduction When measurements of optoelectronic components are performed on

More information

Keysight W2630 Series DDR2 BGA Probes for Logic Analyzers and Oscilloscopes. Data Sheet

Keysight W2630 Series DDR2 BGA Probes for Logic Analyzers and Oscilloscopes. Data Sheet Keysight W2630 Series DDR2 BGA Probes for Logic Analyzers and Oscilloscopes Data Sheet 02 Keysight W2630 Series DDR2 BGA Probes for Logic Analyzers and Oscilloscopes - Data Sheet Features The W2630 Series

More information

Keysight Technologies E4980A Precision LCR Meter 20 Hz to 2 MHz. E4980AL Precision LCR Meter 20 Hz to 300 khz/500 khz/1mhz. Configuration Guide

Keysight Technologies E4980A Precision LCR Meter 20 Hz to 2 MHz. E4980AL Precision LCR Meter 20 Hz to 300 khz/500 khz/1mhz. Configuration Guide Keysight Technologies E4980A Precision LCR Meter 20 Hz to 2 MHz E4980AL Precision LCR Meter 20 Hz to 300 khz/500 khz/1mhz Configuration Guide 02 Keysight E4990A Impedance Analyzer - Configuration Guide

More information

Keysight Technologies M9537A AXIe Embedded Controller

Keysight Technologies M9537A AXIe Embedded Controller Keysight Technologies M9537A AXIe Embedded Controller 2.8 GHz Quad-Core, 8 GB Data Sheet Introduction The Keysight Technologies M9537A is a second-generation AXIe embedded controller which enables new

More information

Keysight Technologies PXI Interoperability How to Achieve Multi- Vendor Interoperability in PXI Systems. Application Note

Keysight Technologies PXI Interoperability How to Achieve Multi- Vendor Interoperability in PXI Systems. Application Note Keysight Technologies PXI Interoperability How to Achieve Multi- Vendor Interoperability in PXI Systems Application Note 2 Keysight PXI Interoperability - Application Note Table of Contents Introduction

More information

Keysight Technologies T4020S LTE RRM Test System. Technical Overview

Keysight Technologies T4020S LTE RRM Test System. Technical Overview Keysight Technologies T4020S LTE RRM Test System Technical Overview 02 Keysight T4020S LTE RRM Test System - Technical Overview Overview The T4020S LTE RRM test system is the Keysight Technologies, Inc.

More information

Keysight Technologies E3640A E3649A Programmable DC Power Supplies. Data Sheet

Keysight Technologies E3640A E3649A Programmable DC Power Supplies. Data Sheet Keysight Technologies E3640A E3649A Programmable DC Power Supplies Data Sheet 02 Keysight E3640A E3649A Programmable DC Power Supplies Data Sheet Reliable Power, Repeatable Results Single and dual outputs

More information

Keysight Technologies E36100B Series Programmable DC Power Supplies. Data Sheet

Keysight Technologies E36100B Series Programmable DC Power Supplies. Data Sheet Keysight Technologies E36100B Series Programmable DC Power Supplies Data Sheet 02 Keysight E36100B Series Programmable DC Power Supplies - Data Sheet Power Forward Designs change and so should your DC

More information

Keysight Technologies Medalist i1000d In-Circuit Test System. Data Sheet

Keysight Technologies Medalist i1000d In-Circuit Test System. Data Sheet Keysight Technologies Medalist i1000d In-Circuit Test System Data Sheet 02 Keysight Medalist i1000d In-Circuit Test System - Data Sheet The Keysight Medalist i1000d In-Circuit Tester (ICT) redefines digital

More information

Keysight Technologies Understanding x1149 Integrity Test. Application Note

Keysight Technologies Understanding x1149 Integrity Test. Application Note Keysight Technologies Understanding x1149 Integrity Test Application Note Introduction This application note describes in detail what the Keysight x1149 Boundary Scan Analyzer performs during the Integrity

More information

Keysight Technologies M9037A PXIe Embedded Controller

Keysight Technologies M9037A PXIe Embedded Controller Keysight Technologies M9037A PXIe Embedded Controller 2.4 GHz Quad-Core Data Sheet Introduction Product Description The Keysight Technologies, Inc. M9037A is a four-slot PXIe embedded PC controller with

More information

Keysight Technologies I 2 C and SPI Protocol Triggering and Decode

Keysight Technologies I 2 C and SPI Protocol Triggering and Decode Keysight Technologies I 2 C and SPI Protocol Triggering and Decode For Infiniium 9000 and S-Series Oscilloscopes Data Sheet This application is available in the following license variations. Fixed to an

More information

Keysight Technologies DDR4 Functional/Protocol Debug and Analysis Reference Solution. Configuration Guide

Keysight Technologies DDR4 Functional/Protocol Debug and Analysis Reference Solution. Configuration Guide Keysight Technologies DDR4 Functional/Protocol Debug and Analysis Reference Solution Configuration Guide 02 Keysight DDR4 Functional/Protocol Debug and Analysis Reference Solution - Configuration Guide

More information

Keysight Technologies How to Correlate USB Type-C Simulation and Measurement

Keysight Technologies How to Correlate USB Type-C Simulation and Measurement Keysight Technologies How to Correlate USB Type-C Simulation and Measurement Keysight and Type-C: Create a faster path to done Application Note 02 Keysight How to Correlate USB Type-C Simulation and Measurement

More information

Keysight Technologies J-BERT M8020A High-Performance BERT

Keysight Technologies J-BERT M8020A High-Performance BERT Keysight Technologies J-BERT M8020A High-Performance BERT Master Your Next Designs Configuration Guide Version 3.6 The following steps will guide you through configuring a J-BERT M8020A High-Performance

More information

Keysight Technologies Database Connectivity Guide for TestExec SL

Keysight Technologies Database Connectivity Guide for TestExec SL Keysight Technologies Database Connectivity Guide for TestExec SL Application Note Overview The requirement for database storage is gaining prevalence in today s industries as manufacturing becomes more

More information

Keysight Technologies RS232/UART Protocol Triggering and Decode for Infiniium Series Oscilloscopes. Data Sheet

Keysight Technologies RS232/UART Protocol Triggering and Decode for Infiniium Series Oscilloscopes. Data Sheet Keysight Technologies RS232/UART Protocol Triggering and Decode for Infiniium 90000 Series Oscilloscopes Data Sheet This application is available in the following license variations. Order N5462A for a

More information

Keysight Technologies Multi-Vendor Cellular Networks and Value Driven Optimization. Application Note

Keysight Technologies Multi-Vendor Cellular Networks and Value Driven Optimization. Application Note Keysight Technologies Multi-Vendor Cellular Networks and Value Driven Optimization Application Note Introduction In today s mobile networks, revenue per transported bit is constantly decreasing, while

More information

Keysight Technologies E5260A/E5262A/E5263A/E5270B Precision IV Analyzers. Technical Overview

Keysight Technologies E5260A/E5262A/E5263A/E5270B Precision IV Analyzers. Technical Overview Keysight Technologies E5260A/E5262A/E5263A/E5270B Precision IV Analyzers Technical Overview Introduction The high performance IV analyzer with current measurement capability as low as 0.1 fa, offers the

More information

Keysight U5340A FPGA Development Kit for High-Speed Digitizers

Keysight U5340A FPGA Development Kit for High-Speed Digitizers Keysight U5340A FPGA Development Kit for High-Speed Digitizers 02 Keysight U5340A FPGA Development Kit for High-Speed Digitizers - Brochure Helping You Achieve Greater Performance The FPGA Development

More information

Keysight Technologies 87606B Coaxial Matrix Switch

Keysight Technologies 87606B Coaxial Matrix Switch Keysight Technologies 87606B Coaxial Matrix Switch DC to 20 GHz Technical Overview 02 Keysight 87606B Coaxial Matrix Switch Technical Overview High Performance Matrix Switch for RF and Microwave Test Systems

More information

Keysight Technologies W3630A Series DDR3 BGA Probes for Logic Analyzers and Oscilloscopes. Data Sheet

Keysight Technologies W3630A Series DDR3 BGA Probes for Logic Analyzers and Oscilloscopes. Data Sheet Keysight Technologies W3630A Series DDR3 BGA Probes for Logic Analyzers and Oscilloscopes Data Sheet Introduction The W3630A series DDR3 BGA probes enable probing of embedded memory DIMMs directly at the

More information

Keysight B2980A Series Femto/Picoammeter Electrometer/High Resistance Meter

Keysight B2980A Series Femto/Picoammeter Electrometer/High Resistance Meter Keysight B2980A Series Femto/Picoammeter Electrometer/High Resistance Meter Configuration Guide The world s only graphical Picoammeter/Electrometer that can confidently measure down to 0.01 fa and up to

More information

Keysight Technologies Modifying a GPIB System to Include LAN/LXI

Keysight Technologies Modifying a GPIB System to Include LAN/LXI Keysight Technologies Modifying a GPIB System to Include LAN/LXI A step-by-step example Application Note Introduction In most cases, the process of replacing a GPIB instrument with a similar LXI-based

More information

Keysight Technologies Measurement Wizard Assistant (MWA) Software for the ENA. Application Note

Keysight Technologies Measurement Wizard Assistant (MWA) Software for the ENA. Application Note Keysight Technologies Measurement Wizard Assistant (MWA) Software for the ENA Application Note Introduction In today s fast-paced testing environments, with increasing functionality supported in devices

More information

Keysight L4445A Microwave Switch/Attenuator Driver. Data Sheet

Keysight L4445A Microwave Switch/Attenuator Driver. Data Sheet Keysight L4445A Microwave Switch/Attenuator Driver Data Sheet Introduction Microwave switch/attenuator driver offers support of most common microwave switches with distribution boards for easy coniguration.

More information

Keysight N2870A Series Passive Probes and Accessories. Data Sheet

Keysight N2870A Series Passive Probes and Accessories. Data Sheet Keysight N2870A Series Passive Probes and Accessories Data Sheet Introduction The N2870A Series passive probe family sets new standards in high performance probing of up to 1.5 GHz bandwidth. These general

More information

Keysight Technologies BenchVue Software v3.5 (BV0000A)

Keysight Technologies BenchVue Software v3.5 (BV0000A) Keysight Technologies BenchVue Software v3.5 (BV0000A) Data capture simplified. Click. Capture. Done. Technical Overview 02 Keysight BenchVue Software v3.5 (BV0000A) - Technical Overview Simplified Measurement

More information

Keysight Technologies M9300A PXIe Frequency Reference. Data Sheet

Keysight Technologies M9300A PXIe Frequency Reference. Data Sheet Keysight Technologies M9300A PXIe Frequency Reference Data Sheet Overview Product Description The Keysight Technologies, Inc. M9300A PXIe frequency reference is a PXIe modular instrument that can be used

More information

Keysight Technologies M9187A PXI Digital I/O Control Module. Data Sheet

Keysight Technologies M9187A PXI Digital I/O Control Module. Data Sheet Keysight Technologies M9187A PXI Digital I/O Control Module Data Sheet 02 Keysight M9187A PXI Digital I/O Control Module - Data Sheet Overview Product Description The Keysight Technologies, Inc. M9187A

More information

Keysight Technologies DSOX4USBSQ USB 2.0 Signal Quality Test Option for 4000 X-Series. Data Sheet

Keysight Technologies DSOX4USBSQ USB 2.0 Signal Quality Test Option for 4000 X-Series. Data Sheet Keysight Technologies DSOX4USBSQ USB 2.0 Signal Quality Test Option for 4000 X-Series Data Sheet 02 Keysight DSOX4USBSQ USB 2.0 Signal Quality Test Option for 4000 X-Series - Data Sheet Introduction The

More information

Keysight E7515A UXM Wireless Test Set. Coniguration Guide

Keysight E7515A UXM Wireless Test Set. Coniguration Guide Keysight E7515A UXM Wireless Test Set Coniguration Guide 02 Keysight E7515A UXM Wireless Test Set - Coniguration Guide Make a Clear Call The team looks to you: will a new chipset or UE pass the crucial

More information

Keysight E4991B Impedance Analyzer

Keysight E4991B Impedance Analyzer Keysight E4991B Impedance Analyzer 1 MHz to 500 M/1 G/3 GHz Coniguration Guide 02 Keysight E4991B Impedance Analyzer - Coniguration Guide Ordering Guide The following steps will guide you through coniguring

More information

Keysight Technologies E6950A ecall/era-glonass Conformance Test Solution

Keysight Technologies E6950A ecall/era-glonass Conformance Test Solution Keysight Technologies E6950A ecall/era-glonass Conformance Test Solution Introduction Emergency Call (ecall) is an in-vehicle road safety system developed to reduce fatalities, injuries and property loss

More information

Keysight Technologies PXI Multiplexer Switch Modules

Keysight Technologies PXI Multiplexer Switch Modules Keysight Technologies PXI Multiplexer Switch Modules M9101A, M9102A, M9103A Data Sheet 02 Keysight PXI Multiplexer Switch Modules M9101A, M9102A, M9103A Data Sheet Overview Product description The PXI

More information

Keysight Technologies M9005A PXIe Chassis Integrated System Module, 5-slots, 3U. Data Sheet

Keysight Technologies M9005A PXIe Chassis Integrated System Module, 5-slots, 3U. Data Sheet Keysight Technologies M9005A PXIe Chassis Integrated System Module, 5-slots, 3U Data Sheet Introduction The Keysight Technologies, Inc. M9005A PXIe 5-slot chassis is the smallest footprint family member

More information

Keysight Technologies E36100 Series Programmable DC Power Supplies. Data Sheet

Keysight Technologies E36100 Series Programmable DC Power Supplies. Data Sheet Keysight Technologies E36100 Series Programmable DC Power Supplies Data Sheet 02 Keysight E36100 Series Programmable DC Power Supplies - Data Sheet Power forward Designs change and so should your DC power

More information

Keysight Technologies PXI Vector Network Analyzer

Keysight Technologies PXI Vector Network Analyzer Keysight Technologies PXI Vector Network Analyzer M9370A 300 khz to 4 GHz M9371A 300 khz to 6.5 GHz M9372A 300 khz to 9 GHz M9373A 300 khz to 14 GHz M9374A 300 khz to 20 GHz M9375A 300 khz to 26.5 GHz

More information

Keysight Technologies Replacing the 34401A in Your Test System with the New 34410A and 34411A High-Performance Digital Multimeters.

Keysight Technologies Replacing the 34401A in Your Test System with the New 34410A and 34411A High-Performance Digital Multimeters. Keysight Technologies Replacing the 34401A in Your Test System with the New 34410A and 34411A High-Performance Digital Multimeters Application Note Introduction The Keysight Technologies, Inc. 34410A and

More information

Keysight Technologies EXG X-Series Signal Generators N5171B Analog & N5172B Vector

Keysight Technologies EXG X-Series Signal Generators N5171B Analog & N5172B Vector Keysight Technologies EXG X-Series Signal Generators N5171B Analog & N5172B Vector Configuration Guide This configuration guide will help you determine which performance options, software applications,

More information

Keysight N7018A Type-C Test Controller. Data Sheet

Keysight N7018A Type-C Test Controller. Data Sheet Keysight N7018A Type-C Test Controller Data Sheet 02 Keysight N7018A Type-C Test Controller - Data Sheet Table of Contents Designed for Debug, Compliance and Full Design Validation...04 Debug Features...06

More information