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

Size: px
Start display at page:

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

Transcription

1 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 PCI-5153EX to implement additional onboard signal processing. The Hardware Accumulation Firmware image (FW06) is a set of code that can be downloaded to the NI PCI-5153EX FPGA to add hardware accumulation functionality to the device. This document describes the additional functionality of the NI PCI-5153EX with FW06 firmware. For other information about the device, refer to the NI High-Speed Digitizers Help. Specifications... 2 Hardware Block Diagram... 2 Onboard Signal Processing... 3 Data Inversion Circuit... 3 Threshold Circuit and Digital Offset... 4 Waveform Accumulation... 6 Glossary... 8 Programming... 9 NI 5153EX Supplemental Software... 9 Features... 9 Examples... 9 Programming Flow... 9 Creating an Application LabVIEW C/C Niscope Averager Programming Reference Niscope Averager Enable Onboard Averaging Niscope Averager Configure Noise Suppression Binary Niscope Averager Commit Niscope Averager Fetch Average Niscope Averager Fetch Binary Average... 17

2 Specifications Hardware Block Diagram The following documents contain the detailed product specifications for the NI 5153EX: NI 5153/5154 Specifications NI PCI-5153EX with Hardware Accumulation Firmware (FW06) Specifications Supplement The following figure shows a detailed block diagram of the NI PCI-5153EX digitizer. Refer to the NI High-Speed Digitizers Help for more information about the features of the NI PCI Dual ADCs CH 0 CH 1 AC/DC Coupling AC/DC Coupling Analog In Path Analog In Path 8-Bit 1 GS/s ADC TIS Mode 8-Bit 1 GS/s ADC Decimation/ Onboard Signal Processing Onboard Memory PCI Interface PCI Bus TRIG DC Coupling TRIG In Path Trigger and Event Control Acquisition Engine PFI 0 Clocking RTSI 7 PFI 1 Sample Clock Reference Clock RTSI Bus Signal Routing Matrix RTSI <0..6> RTSI 7 Figure 1. NI PCI-5153EX Block Diagram NI PCI-5153EX User Guide 2 ni.com

3 Onboard Signal Processing The following diagram shows the onboard signal processing blocks of the Hardware Accumulation Firmware (FW06). Waveform Accumulation Deep Onboard Memory FPGA PCI ADC ADC Data Inversion Data Inversion Threshold/ Digital Offset Threshold/ Digital Offset Partial Sums Combine Partial Sums PCI Interface Data Inversion Circuit Figure 2. NI PCI-5153EX Onboard Signal Processing Block Diagram The Data Inversion circuit allows the user to invert the polarity of the data. That is, for each sample, i, in the input record w, Data Inversion transforms the record as shown in the following graphs. Figure A shows the original signal; Figure B shows the signal after applying Data Inversion. A B National Instruments Corporation 3 NI PCI-5153EX User Guide

4 Threshold Circuit and Digital Offset The threshold circuit allows you to remove unwanted information from the record by setting a programmable threshold level. If data inversion is disabled, samples at or below Threshold are set to a programmable ThresholdFloor value. If data inversion is enabled, samples at or above the Threshold are set to the programmable ThresholdFloor value. If digital offset is enabled, samples not set to ThresholdFloor are offset by a constant value. Figures 3 5 show examples of how the Threshold/Digital Offset circuitry works. Figure 3. Input Waveform NI PCI-5153EX User Guide 4 ni.com

5 Figure 4. Output of Threshold Circuit Figure 5. Output of Threshold Circuit with a Negative Digital Offset Value National Instruments Corporation 5 NI PCI-5153EX User Guide

6 Waveform Accumulation The following pseudocode further illustrates how the Threshold/Digital Offset circuitry works. For each sample i in the input record w, the threshold circuit and the digital offset transform the records as follows (assuming that data inversion is disabled): if ThresholdIsEnabled if w[i] = Threshold w[i] = ThresholdFloor else if DigitalOffsetIsEnabled w[i] = w[i] + DigitalOffset endif else if DigitalOffsetIsEnabled w[i] = w[i] + DigitalOffset endif The waveform accumulation circuit generates a multi-record sum by performing a sample-by-sample sum of each record. The host PC can divide the sums by the number of records to generate an average waveform. Conceptually, this circuit contains a set of 24-bit accumulators one accumulator for each sample in a record. For each record w, for each sample i, in the record, the value of the sample is summed with the sum of sample i from all of the previous records in the current acquisition. That is, the accumulator for sample i (acc[i]) changes as follows: acc[i] = acc[i] + w[i] NI PCI-5153EX User Guide 6 ni.com

7 For two-channel applications, each channel is accumulated independently. The following figure illustrates waveform accumulation. Record Record Record Record Sample Sample Σ Σ Each Element i Is The Sum Of Element i From Each Record Multi-record sum Figure 6. Waveform Accumulation Note When using a Reference trigger to control when records are acquired, to accumulate N desired records, you must provide N+1 triggers. The final trigger flushes the sum data. National Instruments Corporation 7 NI PCI-5153EX User Guide

8 Glossary Figure 7 illustrates the definitions of several terms. Block Deadtime Block Record Rearm time Record Rearm time Record Sample Trigger Sample Period = 1 Sample Rate Figure 7. Terminology Sample: one A/D conversion. Sample Period: the time between two consecutive samples. Sample Rate: 1/Sample Period. Record: a set of samples taken consecutively in time in response to a trigger. Rearm time: the minimum time between the last sample of a record and when the device is able to recognize a trigger for the following record. Block: a set of records (all with the same number of samples) taken consecutively in time. Deadtime: the minimum time between the last sample of the last record of a block and the first sample of the first record in the following block. Multi-record Sum: a record where each element i is the sum of element i from each record in a block. Refer to Figure 6 in the Waveform Accumulation section for more information. NI PCI-5153EX User Guide 8 ni.com

9 Programming NI 5153EX Supplemental Software The use of the accumulation feature on the NI PCI-5153EX requires using supplemental software called Niscope Averager. This section describes how to use Niscope Averager software to control the accumulation firmware feature of the device. The Niscope Averager software works with the NI-SCOPE instrument driver and does not replace it. Features Onboard accumulation of multiple records to form one multi-record sum that can be fetched back to the host by the user, either as a binary sum or an averaged voltage Onboard data inversion Threshold/digital offset Examples Examples are included with the software download. Programming Flow The programming flow for using the accumulation feature of the device uses standard NI-SCOPE function calls in conjunction with Niscope Averager function calls. Figure 8 illustrates a standard programming flow. National Instruments Corporation 9 NI PCI-5153EX User Guide

10 NI-SCOPE Initialize NI-SCOPE Configure Niscope Averager Configure Niscope Averager Commit Niscope Averager NI-SCOPE Enable Initiate Onboard Acquisition Averaging NI-SCOPE Initiate Acquisition Niscope Averager Fetch Functions No Do More Acquisitions? Yes NI-SCOPE Close Figure 8. Programming Flow for Averaging You must call Niscope Averager Enable Onboard Averaging before starting every acquisition, even if you are not changing any configurations. NI PCI-5153EX User Guide 10 ni.com

11 Note After you enable onboard averaging the only way to disable it is to call NI-SCOPE Device Reset. You must call NI-SCOPE Device Reset if your application switches between averaging mode and normal mode. Creating an Application LabVIEW 1. Launch LabVIEW. 2. Open an existing LabVIEW VI or create a new VI. 3. Make sure you are on the block diagram screen. 4. Launch the NI-SCOPE palette. 5. Build your application using the Niscope Averager functions in the appropriate programming flow steps. C/C++ To create an application follow the NI-SCOPE directions, which are available in the NI High-Speed Digitizers Help. In addition, you must include the following Niscope Averager files in your application: niscopeavg.h niscopeavg.lib niscopeavg.dll To build the examples in Microsoft Visual C using the Microsoft NMAKE utility, complete the following steps: 1. Go to the directory for the particular example you want to use. 2. Run the VCVARS32.BAT batch file (located in the \bin directory of the MSVC compiler) to set up the environment variables for command line usage if they are not already set. You may need to increase the initial environment size of the DOS box to accommodate the added environment variables. 3. To build an example, run nmake examplename.mak. The executable is built to the debug subdirectory by default. National Instruments Corporation 11 NI PCI-5153EX User Guide

12 Niscope Averager Programming Reference The following reference for Niscope Averager is an extension of the NI-SCOPE programming reference, which can be found in the NI High Speed Digitizers Help. Niscope Averager Enable Onboard Averaging Purpose This function enables the onboard averaging functionality. The function disables the TDC and sets the reference position to zero. After you enable this function you can no longer use NI-SCOPE Fetch functions; use Niscope Averager functions instead. Call this function after you complete all your configurations (right before you call NI-SCOPE Initiate Acquisition). Call this function prior to every acquisition, even if no configurations have changed. Note After you call this function you can only disable averaging mode by calling NI-SCOPE Device Reset. Function Prototypes C Function ViStatus niscopeavg_enableonboardaveraging (ViSession vi, ViInt32 numberofaverages, ViInt32* actualnumberofrecords, ViInt32* numberofpartialsums); LabVIEW VI Parameters vi Name numberofaverages Description The instrument handle you obtain from niscope_init that identifies a particular instrument session. The number of records that the averaging firmware should accumulate. NI PCI-5153EX User Guide 12 ni.com

13 Niscope Averager Configure Noise Suppression Binary Purpose This function configures the noise suppression onboard signal processing. Noise suppression consists of two blocks: Data Inversion and Threshold Circuit/Digital Offset. You can enable and configure each block individually using this function. The parameters are specified in signed binary 8-bit values and correspond to the uncalibrated binary data from the ADC. Each configuration of a device has specific calibration coefficients to scale uncalibrated binary data to volts. These coefficients are determined for each configuration of each device during a calibration operation and then programmed into the device. NI-SCOPE binary functions and Niscope Averager binary functions use or return raw binary data without applying these coefficients. When using binary functions, your application must apply the coefficients if you want calibrated data. If you are using NI-SCOPE 3.6 or later, you can use the VI/function niscope Get Scaling Coefficients to retrieve the scaling coefficients for your desired configuration 1. After you obtain the offset and gain coefficients for the particular configuration and device, you can determine the binary code corresponding to the desired voltage by solving the following formula for binary data: voltage = binary data * gain factor + offset The corresponding binary codes for the desired Threshold, Threshold Floor and Digital Offset voltages should be provided to this function as part of the configuration of the desired acquisition so that the noise suppression functionality applies the calibration coefficients of the device. Note that while noise suppression configuration is only offered as a binary function, you can use fetch functions that return either binary or scaled data. For further information, refer to any binary fetch function in the NI-SCOPE Function Reference Help or the NI-SCOPE LabVIEW Reference Help. Threshold Floor and Digital Offset limits are shown in the following table. Description Max Value Min Value Threshold Floor Threshold Full Scale Digital Offset 0 Threshold Floor Threshold 1 If you are using NI-SCOPE versions or to obtain the coefficients for the desired configuration of a particular device in the system, first run a dummy acquisition with all desired analog front end configuration settings, then call a fetch function. One of the return values of the fetch functions is a wfm info struct that includes the offset and gain coefficients required to convert between ADC codes and calibrated voltage. National Instruments Corporation 13 NI PCI-5153EX User Guide

14 Note The configuration is not applied to hardware until you call niscopeavg Commit. Function Prototypes C Function ViStatus niscopeavg_configurenoisesuppressionbinary (ViSession vi, ViConstString channel, ViBoolean invertsamplesenable, ViBoolean thresholdenable, ViInt32 threshold, ViInt32 thresholdfloor, ViBoolean digitaloffsetenable, ViInt32 digitaloffset); LabVIEW VI Parameters Name vi channel invertsamplesenable thresholdenable threshold thresholdfloor digitaloffsetenable digitaloffset Description The instrument handle you obtain from niscope_init that identifies a particular instrument session. The channel from which to acquire data. Enables the Data Inversion OSP block. Enables the Threshold OSP block. Specifies the ADC binary level to apply a threshold to. All samples at or below this level will be replaced with the threshold floor. The binary value to replace samples below the threshold Enables the Digital Offset OSP block. Specifies the offset in ADC binary codes to offset the data. NI PCI-5153EX User Guide 14 ni.com

15 Niscope Averager Commit Purpose This function applies the user configuration to hardware. Call this function after you finish configuring the device, but before you call NI-SCOPE Initiate Acquisition. Function Prototypes C Function ViStatus niscopeavg_commit (ViSession vi); LabVIEW VI Parameters vi Name Description The instrument handle you obtain from niscope_init that identifies a particular instrument session. Niscope Averager Fetch Average Purpose This function fetches scaled averaged data from the onboard memory of the device. The function works similarly to other NI-SCOPE functions. This function does not support fetching relative to any other location than pretrigger. The function begins fetching the averaged data after the acquisition is complete. Data allocation in C is different for this function compared to standard NI-SCOPE function calls. The allocation code is as follows: niscope_actualrecordlength(vi, &actualrecordlength) waveformptr = malloc (sizeof (ViReal64)* actualrecordlength); The Niscope Averager fetch functions cannot take more than one channel per fetch call. To fetch multiple channels you must call the function multiple times, using one channel name per call. National Instruments Corporation 15 NI PCI-5153EX User Guide

16 Function Prototypes C Function ViStatus niscopeavg_fetchavg (ViSession vi, ViConstString channel, ViReal64 timeout, ViInt32 numpts, ViInt32* actualnumberofrecordsaccumulated, ViReal64* wfm, struct niscope_wfminfo* wfminfo); LabVIEW VI Parameters Name vi channel timeout numpts actualnumberofrecordsaccumulated wfm wfminfo Description The instrument handle you obtain from niscope_init that identifies a particular instrument session. The channel from which to acquire data. The amount of time, in seconds, the function should wait for the data before returning an error. The number of points to fetch from the device. The actual number of records accumulated. The waveform data. The waveform information, including calibration constants and timestamps. NI PCI-5153EX User Guide 16 ni.com

17 Niscope Averager Fetch Binary Average Purpose This function fetches unscaled, uncalibrated data from the onboard memory of the device. The function works similarly to other NI-SCOPE functions. This function does not support fetching relative to any other location than pretrigger. The function begins fetching the averaged data after the acquisition is complete. Returned data will be 24-bit left-justified signed binary data in a 32-bit integer container. Data allocation in C is different for this function compared to standard NI-SCOPE function calls. The allocation code is as follows: niscope_actualrecordlength (vi, &actualrecordlength) waveformptr = malloc (sizeof (ViReal64)* actualrecordlength); The Niscope Averager fetch functions cannot take more than one channel per fetch call. To fetch multiple channels you must call the function multiple times, using one channel name per call. Function Prototypes C Function ViStatus niscopeavg_fetchavgbinary32 (ViSession vi, ViConstString channel, ViReal64 timeout, ViInt32 numpts, ViInt32* actualnumberofrecordsaccumulated, ViInt32* wfm, struct niscope_wfminfo* wfminfo); LabVIEW VI National Instruments Corporation 17 NI PCI-5153EX User Guide

18 Parameters Name vi channel timeout numpts wfm wfminfo Description The instrument handle you obtain from niscope_init that identifies a particular instrument session. The channel from which to acquire data. The amount of time, in seconds, the function should wait for the data before returning an error. The number of points to fetch from the device. The waveform data. The waveform information, including calibration constants and timestamps. National Instruments, NI, ni.com, and LabVIEW are trademarks of National Instruments Corporation. Refer to the Terms of Use section on ni.com/legal for more information about National Instruments trademarks. Other product and company names mentioned herein are trademarks or trade names of their respective companies. For patents covering National Instruments products/technology, refer to the appropriate location: Help»Patents in your software, the patents.txt file on your media, or the National Instruments Patent Notice at ni.com/patents National Instruments Corporation. All rights reserved A-01 Oct09

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

LabVIEW for FTC Release Notes

LabVIEW for FTC Release Notes LabVIEW for FTC Release Notes FTC 2010 Contents These release notes contain system requirements and installation instructions for LabVIEW for FTC. LabVIEW for FTC includes LabVIEW 2009 Student Edition

More information

To calibrate the NI 5105, install the following versions of NI-SCOPE. NI-SCOPE Version

To calibrate the NI 5105, install the following versions of NI-SCOPE. NI-SCOPE Version CALIBRATION PROCEDURE NI 5105 This document contains instructions for writing an external calibration procedure for the NI PXI/PXIe/PCI-5105. For more information about calibration, visit ni.com/calibration.

More information

Contents. Software. CALIBRATION PROCEDURE NI 9216/ Channel, 24-Bit, 100 Ω/1000 Ω RTD Analog Input Module

Contents. Software. CALIBRATION PROCEDURE NI 9216/ Channel, 24-Bit, 100 Ω/1000 Ω RTD Analog Input Module CALIBRATION PROCEDURE NI 9216/9226 8-Channel, 24-Bit, 100 Ω/1000 Ω RTD Analog Input Module This document contains the verification and adjustment procedures for the National Instruments 9216 and National

More information

LabVIEW FPGA Module Release and Upgrade Notes

LabVIEW FPGA Module Release and Upgrade Notes LabVIEW FPGA Module Release and Upgrade Notes Version 8.0 Contents These release notes contain instructions for installing the LabVIEW FPGA Module, introduce new features, and provide upgrade information.

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

CALIBRATION PROCEDURE NI channel, ±2- ma/±10 V, 24-bit Analog Input Module. ni.com/manuals

CALIBRATION PROCEDURE NI channel, ±2- ma/±10 V, 24-bit Analog Input Module. ni.com/manuals CALIBRATION PROCEDURE NI 9207 16-channel, ±2- ma/±10 V, 24-bit Analog Input Module Français Deutsch ni.com/manuals This document contains the verification and adjustment procedures for the National Instruments

More information

±10 V, 20 MS/s/ch, 14-Bit, 4-Channel C Series Digitizer Module

±10 V, 20 MS/s/ch, 14-Bit, 4-Channel C Series Digitizer Module CALIBRATION PROCEDURE NI 9775 ±10 V, 20 MS/s/ch, 14-Bit, 4-Channel C Series Digitizer Module This document contains the verification and adjustment procedures for the NI 9775. For more information on calibration,

More information

NI-DAQmx Basic Course NITS John Shannon

NI-DAQmx Basic Course NITS John Shannon NI-DAQmx Basic Course NITS 2005 John Shannon Agenda Intro to DAQMX Difference between traditional / DaqMX MAX and DAQ Assistance Analog Input / Output Property Nodes Buffered / Continuous Acquisition Analog

More information

NI PXI Contents CALIBRATION PROCEDURE

NI PXI Contents CALIBRATION PROCEDURE CALIBRATION PROCEDURE NI PXI-5114 Contents This document contains instructions for writing an external calibration procedure for NI PXI-5114 digitizers. This calibration procedure is intended for metrology

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

Contents. Software Requirements. CALIBRATION PROCEDURE NI PXIe-4357

Contents. Software Requirements. CALIBRATION PROCEDURE NI PXIe-4357 CALIBRATION PROCEDURE NI PXIe-4357 Français Deutsch ni.com/manuals This document contains information about calibrating National Instruments PXIe-4357 SC Express modules using NI-DAQmx. For more information

More information

CALIBRATION PROCEDURE PXIe channel, 16-bit, 400 ks/s/ch, Ch-Ch Isolated Analog Input Module. ni.com/manuals

CALIBRATION PROCEDURE PXIe channel, 16-bit, 400 ks/s/ch, Ch-Ch Isolated Analog Input Module. ni.com/manuals CALIBRATION PROCEDURE PXIe-4310 8-channel, 16-bit, 400 ks/s/ch, Ch-Ch Isolated Analog Input Module Français Deutsch ni.com/manuals This document contains the verification and adjustment procedures for

More information

Contents. Software. CALIBRATION PROCEDURE NI Channel, ±5 V, 24-Bit Software-Selectable IEPE and AC/DC Analog Input Module

Contents. Software. CALIBRATION PROCEDURE NI Channel, ±5 V, 24-Bit Software-Selectable IEPE and AC/DC Analog Input Module CALIBRATION PROCEDURE NI 9234 4-Channel, ±5 V, 24-Bit Software-Selectable IEPE and AC/DC Analog Input Module This document contains the verification and adjustment procedures for the National Instruments

More information

CALIBRATION PROCEDURE SCXI Contents. Software Requirements. ni.com/manuals

CALIBRATION PROCEDURE SCXI Contents. Software Requirements. ni.com/manuals CALIBRATION PROCEDURE SCXI -10 Français Deutsch ni.com/manuals Contents This document contains information for verifying and adjusting the SCXI-10 module using NI-DAQmx 8.1 or later. For more information

More information

NI-Industrial Communications for EtherCAT

NI-Industrial Communications for EtherCAT INSTALLATION GUIDE NI-Industrial Communications for EtherCAT This document explains how to install the NI-Industrial Communications for EtherCAT software and describes the hardware and software requirements.

More information

CALIBRATION PROCEDURE NI PXIe Channel, Isolated Voltage/Current Analog Output Module

CALIBRATION PROCEDURE NI PXIe Channel, Isolated Voltage/Current Analog Output Module CALIBRATION PROCEDURE NI PXIe-4322 8-Channel, Isolated Voltage/Current Analog Output Module This document contains the verification and adjustment procedures for the National Instruments PXIe-4322 module.

More information

SCXI Contents CALIBRATION PROCEDURE

SCXI Contents CALIBRATION PROCEDURE CALIBRATION PROCEDURE SCXI -1122 Contents This document contains information and step-by-step instructions for calibrating the National Instruments SCXI-1122 module. Introduction... 2 What Is Calibration?...

More information

LabVIEW FPGA Module Release and Upgrade Notes

LabVIEW FPGA Module Release and Upgrade Notes LabVIEW FPGA Module Release and Upgrade Notes Version 2009 Contents These release notes contain instructions for installing the LabVIEW FPGA Module, introduce new features, and provide upgrade information.

More information

DT9828. USB Powered Thermocouple Measurement Module. Key Features: Analog Input Channels

DT9828. USB Powered Thermocouple Measurement Module. Key Features: Analog Input Channels DT9828 USB Powered Thermocouple Measurement Module Key Features: 8 differential analog inputs for thermocouple or voltage measurements Support for B, E, J, K, N, R, S, and T thermocouple types One cold

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

LabVIEW Real-Time Module Release Notes

LabVIEW Real-Time Module Release Notes LabVIEW Real-Time Module Release Notes Version 7.1 Contents Installation These release notes provide installation information, references to related documentation, descriptions of the new features, and

More information

The following conventions appear in this document:

The following conventions appear in this document: CALIBRATION PROCEDURE NI PXI-4220 Conventions This document contains the information and instructions needed to calibrate the NI PXI-4220. You should calibrate the NI PXI-4220 at a regular interval as

More information

CALIBRATION PROCEDURE CAL Contents. Software

CALIBRATION PROCEDURE CAL Contents. Software CALIBRATION PROCEDURE CAL-4353 Français Deutsch ni.com/manuals Contents Software This document contains information about verifying and adjusting National Instruments NI PXIe-4353 modules using NI-DAQmx

More information

LabVIEW Real-Time Module Release and Upgrade Notes

LabVIEW Real-Time Module Release and Upgrade Notes LabVIEW Real-Time Module Release and Upgrade Notes Version 8.0 Contents This document provides installation instructions, system requirements, upgrade information, and descriptions of the new features

More information

Battery Backup. Sanitization Procedure Waveform Data SDRAM 32 MB (-01/-21) No Yes Yes Cycle Power

Battery Backup. Sanitization Procedure Waveform Data SDRAM 32 MB (-01/-21) No Yes Yes Cycle Power Manufacturer: National Instruments Board Assembly Part Numbers ( DIGITIZERS) Part Number and Revision Description 185701C-01 to 185701H-01 IF DIGITIZER, 16MS 185701F-21 IF DIGITIZER, 16MS 185701C-02 to

More information

FLEXMOTION VI LIBRARY VERSION 4.5

FLEXMOTION VI LIBRARY VERSION 4.5 RELEASE NOTES FLEXMOTION VI LIBRARY VERSION 4.5 Compatibility Issues The FlexMotion VI Library 4.5 is the motion control VI library for interfacing with all National Instruments FlexMotion series motion

More information

Base, Medium, Full, and Extended Configuration Camera Link Frame Grabber

Base, Medium, Full, and Extended Configuration Camera Link Frame Grabber USER MANUAL NI PCIe-1437 Base, Medium, Full, and Extended Configuration Camera Link Frame Grabber The NI PCIe-1437 is an image acquisition device with a PCIe 2.0 x8 host interface. It supports many Lite,

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

LabVIEW Real-Time Module for Mac OS X User Manual Addendum

LabVIEW Real-Time Module for Mac OS X User Manual Addendum LabVIEW Real-Time Module for Mac OS X User Manual Addendum Contents Installing the Software This addendum supplements the LabVIEW Real-Time Module User Manual with information specific to running the LabVIEW

More information

LabVIEW DataFinder Toolkit

LabVIEW DataFinder Toolkit LabVIEW DataFinder Toolkit Use the NI LabVIEW DataFinder Toolkit to work with the DataFinder in LabVIEW. You can use the DataFinder to search for simple texts or to execute extended queries for specific

More information

M Series USB-6221/6225/6229/6251/6255/6259 OEM Devices

M Series USB-6221/6225/6229/6251/6255/6259 OEM Devices USER GUIDE NI USB-x/x OEM M Series USB-///// OEM Devices This document provides dimensions, pinouts, and information about the connectors, switch, LEDs, and chassis ground of the National Instruments USB-

More information

NI 9213 Calibration Procedure

NI 9213 Calibration Procedure NI 9213 Calibration Procedure Français Deutsch ni.com/manuals This document contains information about calibrating National Instruments 9213 modules using NI-DAQmx. This calibration procedure is intended

More information

The NI TB-2648/2649/2650/2651 terminal blocks configure your NI PXI/PXIe-2531 (NI 2531) in one of the following topologies. 1-wire 8 64 matrix

The NI TB-2648/2649/2650/2651 terminal blocks configure your NI PXI/PXIe-2531 (NI 2531) in one of the following topologies. 1-wire 8 64 matrix INSTALLATION INSTRUCTIONS NI TB-//0/ Terminal Blocks for the NI PXI/PXIe- Introduction The NI TB-//0/ terminal blocks configure your NI PXI/PXIe- (NI ) in one of the following topologies. Table. NI Configurations

More information

New Software-Designed Instruments

New Software-Designed Instruments 1 New Software-Designed Instruments Nicholas Haripersad Field Applications Engineer National Instruments South Africa Agenda What Is a Software-Designed Instrument? Why Software-Designed Instrumentation?

More information

Contents. Software. CALIBRATION PROCEDURE NI Channel, 300 Vrms, 24-Bit, Simultaneous, Channel-to-Channel Isolated Analog Input Module

Contents. Software. CALIBRATION PROCEDURE NI Channel, 300 Vrms, 24-Bit, Simultaneous, Channel-to-Channel Isolated Analog Input Module CALIBRATION PROCEDURE NI 9225 3-Channel, 300 Vrms, 24-Bit, Simultaneous, Channel-to-Channel Isolated Analog Input Module Français Deutsch ni.com/manuals This document contains the verification and adjustment

More information

PXI/PCI Contents GETTING STARTED GUIDE. 2 GS/s Oscilloscope

PXI/PCI Contents GETTING STARTED GUIDE. 2 GS/s Oscilloscope GETTING STARTED GUIDE PXI/PCI-5154 2 GS/s Oscilloscope Note Before you begin, install and configure your chassis and controller. This document explains how to install, configure, and test the PXI/PCI-5154.

More information

To access NI 5114 documentation, navigate to Start»All Programs»National Instruments» NI-SCOPE»Documentation.

To access NI 5114 documentation, navigate to Start»All Programs»National Instruments» NI-SCOPE»Documentation. GETTING STARTED GUIDE NI PXI/PXIe/PCI-5114 8-Bit 250 MS/s Oscilloscope This document explains how to install, configure, and test the NI PXI/PXIe/PCI-5114 (NI 5114). The NI 5114 is a 2-channel, 125 MHz

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

NI PCIe Hardware Overview. Functional Overview USER MANUAL. Base, Medium, Full, and Extended Configuration Camera Link Frame Grabber

NI PCIe Hardware Overview. Functional Overview USER MANUAL. Base, Medium, Full, and Extended Configuration Camera Link Frame Grabber USER MANUAL NI PCIe-1477 Base, Medium, Full, and Extended Configuration Camera Link Frame Grabber The NI PCIe-1477 is an image acquisition device with a PCIe 2.0 x8 host interface. It has a user-configurable

More information

NI 6703/6704 Calibration Procedure for NI-DAQ mx

NI 6703/6704 Calibration Procedure for NI-DAQ mx NI 6703/6704 Calibration Procedure for NI-DAQ mx Contents This document contains instructions for calibrating the NI 6703/6704 for PCI/PXI/CompactPCI using NI-DAQmx. This document does not discuss programming

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

Advanced NI-DAQmx Programming Techniques with LabVIEW

Advanced NI-DAQmx Programming Techniques with LabVIEW Advanced NI-DAQmx Programming Techniques with LabVIEW Agenda Understanding Your Hardware Data Acquisition Systems Data Acquisition Device Subsystems Advanced Programming with NI-DAQmx Understanding Your

More information

To access NI 5622 documentation, navigate to Start»All Programs»National Instruments» NI-SCOPE»Documentation.

To access NI 5622 documentation, navigate to Start»All Programs»National Instruments» NI-SCOPE»Documentation. GETTING STARTED GUIDE NI PXIe-5622 16-bit 150 MS/s Digitizer This document explains how to install, configure, and test the NI PXIe-5622 (NI 5622). The NI 5622 is a 150 MS/s digitizer with onboard signal

More information

Hardware: Acquiring Data and Communicating with Instruments

Hardware: Acquiring Data and Communicating with Instruments Hardware: Acquiring Data and Communicating with Instruments 4 Acquiring a Signal This chapter introduces you to the Express VIs you use to acquire data and communicate with instruments on Windows. These

More information

Graphical System Design for Machine Control

Graphical System Design for Machine Control Graphical System Design for Machine Control Overview Embedded System Development for Machine Control Using a Single, Automated Graphical Programming Tool Chain and Programmable Automation Controllers (PACs)

More information

NI USB-622x/625x/628x OEM

NI USB-622x/625x/628x OEM USER GUIDE NI USB-x/x/x OEM M Series USB-/////// OEM Devices This document provides dimensions, pinouts, and information about the connectors, switch, LEDs, and chassis ground of the National Instruments

More information

SCXI -1104/C. Contents CALIBRATION PROCEDURE. For NI-DAQmx

SCXI -1104/C. Contents CALIBRATION PROCEDURE. For NI-DAQmx CALIBRATION PROCEDURE SCXI -1104/C For NI-DAQmx Contents This document contains information and instructions for calibrating the National Instruments SCXI-1104/C signal conditioning module. Conventions...

More information

PXI. NI-Sync User Manual. NI-Sync User Manual. October C-01

PXI. NI-Sync User Manual. NI-Sync User Manual. October C-01 PXI NI-Sync User Manual NI-Sync User Manual October 2005 370926C-01 Support Worldwide Technical Support and Product Information ni.com National Instruments Corporate Headquarters 11500 North Mopac Expressway

More information

NI USB-6211/6218 OEM

NI USB-6211/6218 OEM USER GUIDE NI USB-6211/6218 OEM This document provides information about the dimensions, mounting options, connectors, and other components of the NI USB-6211/6218 OEM devices. Caution There are no product

More information

Using Desktop PCs as RT Targets with the LabVIEW Real-Time Module

Using Desktop PCs as RT Targets with the LabVIEW Real-Time Module Using Desktop PCs as RT Targets with the LabVIEW Real-Time Module Contents The LabVIEW Real-Time Module can execute VIs on RT targets running the real-time operating system of Ardence Phar Lap Embedded

More information

NI PXI/PXIe/PCI Contents GETTING STARTED GUIDE. 14-Bit, 100 MS/s PXI Oscilloscope

NI PXI/PXIe/PCI Contents GETTING STARTED GUIDE. 14-Bit, 100 MS/s PXI Oscilloscope GETTING STARTED GUIDE NI PXI/PXIe/PCI-5122 14-Bit, 100 MS/s PXI Oscilloscope Note Before you begin, install and configure your chassis and controller. This document explains how to install, configure,

More information

To access NI 5105 documentation, navigate to Start»All Programs»National Instruments» NI-SCOPE»Documentation.

To access NI 5105 documentation, navigate to Start»All Programs»National Instruments» NI-SCOPE»Documentation. GETTING STARTED GUIDE NI PXI/PXIe/PCI-5105 12-Bit 60 MS/s Oscilloscope This document explains how to install, configure, and test the NI PXI/PXIe/PCI-5105 (NI 5105). The NI 5105 is an 8-channel, 60 MHz

More information

SCXI -1102/B/C. Contents CALIBRATION PROCEDURE. For NI-DAQmx

SCXI -1102/B/C. Contents CALIBRATION PROCEDURE. For NI-DAQmx CALIBRATION PROCEDURE SCXI -1102/B/C For NI-DAQmx Contents This document contains information and instructions for calibrating the National Instruments SCXI-1102/B/C signal conditioning module. Conventions...

More information

NI-DAQmx: Reduce Development Time and Improve Performance

NI-DAQmx: Reduce Development Time and Improve Performance Learn 10 Functions in NI-DAQmx and Handle 80 Percent of Your Data Acquisition Applications The National Instruments Getting Started with NI-DAQmx Series is aimed at helping you learn NI-DAQmx programming

More information

Getting Results with the NI PXI-6585R

Getting Results with the NI PXI-6585R Getting Results with the NI PXI-6585R This document explains how to install and configure the National Instruments PXI-6585R, comprised of an NI FlexRIO FPGA module (NI PXI-79xxR) and an NI 6585 FlexRIO

More information

FPGA design with National Instuments

FPGA design with National Instuments FPGA design with National Instuments Rémi DA SILVA Systems Engineer - Embedded and Data Acquisition Systems - MED Region ni.com The NI Approach to Flexible Hardware Processor Real-time OS Application software

More information

NI PCIe-784xR, NI PXI-784xR, NI PXIe-784xR, NI USB-784xR, NI PCIe-785xR, NI PXI-785xR, NI PXIe-785xR, NI USB-785xR, and NI PXIe-786xR

NI PCIe-784xR, NI PXI-784xR, NI PXIe-784xR, NI USB-784xR, NI PCIe-785xR, NI PXI-785xR, NI PXIe-785xR, NI USB-785xR, and NI PXIe-786xR CALIBRATION PROCEDURE NI R Series NI PCIe-784xR, NI PXI-784xR, NI PXIe-784xR, NI USB-784xR, NI PCIe-785xR, NI PXI-785xR, NI PXIe-785xR, NI USB-785xR, and NI PXIe-786xR This document contains the verification

More information

NI PXIe-5160/5162. Contents. Electromagnetic Compatibility Guidelines GETTING STARTED GUIDE. 10-Bit Oscilloscope

NI PXIe-5160/5162. Contents. Electromagnetic Compatibility Guidelines GETTING STARTED GUIDE. 10-Bit Oscilloscope GETTING STARTED GUIDE NI PXIe-5160/5162 10-Bit Oscilloscope Note Before you begin, install and configure your chassis and controller. This document explains how to install, configure, and test the NI PXIe-5160/5162

More information

Developing Measurement and Control Applications with the LabVIEW FPGA Pioneer System

Developing Measurement and Control Applications with the LabVIEW FPGA Pioneer System Developing Measurement and Control Applications with the LabVIEW FPGA Pioneer System Introduction National Instruments is now offering the LabVIEW FPGA Pioneer System to provide early access to the new

More information

NI 6703/6704 Calibration Procedure for Traditional NI-DAQ

NI 6703/6704 Calibration Procedure for Traditional NI-DAQ NI 6703/6704 Calibration Procedure for Traditional NI-DAQ Introduction This document contains instructions for calibrating the NI 6703/6704 for PCI/PXI/CompactPCI using Traditional NI-DAQ. Use this calibration

More information

IMAQ Vision 7 Development Module for LabVIEW Release Notes

IMAQ Vision 7 Development Module for LabVIEW Release Notes IMAQ Vision 7 Development Module for LabVIEW Release Notes The Vision 7 Development Module for LabVIEW is for engineers and scientists who are developing machine vision and scientific imaging applications.

More information

The data acquisition components, and their relationship to each other, are shown below.

The data acquisition components, and their relationship to each other, are shown below. Data acquisition system Part (1) Digital inputs output and counter You can think of a data acquisition system as a collection of software and hardware that connects you to the physical world. A typical

More information

NOTE TO USERS NI 61xx Pinout Labels for the SCB-68 Multifunction I/O S Series Modules/Devices Using the 68-Pin Shielded Connector Block

NOTE TO USERS NI 61xx Pinout Labels for the SCB-68 Multifunction I/O S Series Modules/Devices Using the 68-Pin Shielded Connector Block NOTE TO USERS NI xx Pinout Labels for the SCB- Multifunction I/O S Series Modules/Devices Using the -Pin Shielded Connector Block If you are using an NI xx (formerly referred to as S Series) multifunction

More information

Getting Results with CompactRIO and LabVIEW

Getting Results with CompactRIO and LabVIEW Getting Results with CompactRIO and LabVIEW Getting Started This tutorial demonstrates how to develop a CompactRIO application in LabVIEW. The application uses a CompactRIO R Series Expansion system or

More information

SCC-AO10 Isolated Analog Output Module

SCC-AO10 Isolated Analog Output Module USER GUIDE SCC-AO10 Isolated Analog Output Module Conventions The SCC-AO10 is an isolated voltage output module with an output range of ±10 V. The output voltage level is controlled by the DAC output of

More information

NI High-Speed Digitizers

NI High-Speed Digitizers GETTING STARTED GUIDE NI High-Speed Digitizers This document explains how to install, configure, and test NI high-speed digitizers, and how to begin programming using the NI-SCOPE instrument driver software.

More information

IMAQ Vision Deployment Engine Note to Users

IMAQ Vision Deployment Engine Note to Users IMAQ Vision Deployment Engine Note to Users The IMAQ Vision Deployment Engine provides everything you need to deploy custom IMAQ Vision applications to target computers. The IMAQ Vision Deployment Engine

More information

NI R Series. Contents. Software CALIBRATION PROCEDURE

NI R Series. Contents. Software CALIBRATION PROCEDURE CALIBRATION PROCEDURE NI R Series NI PCIe-784xR, NI PXI-784xR, NI PXIe-784xR, NI USB-784xR, NI PCIe-785xR, NI PXI-785xR, NI PXIe-785xR, and NI USB-785xR This document contains the verification and adjustment

More information

IMAQ Vision Deployment Engine Note to Users

IMAQ Vision Deployment Engine Note to Users IMAQ Vision Deployment Engine Note to Users The IMAQ Vision Deployment Engine provides everything you need to deploy custom IMAQ Vision applications to target computers. The IMAQ Vision Deployment Engine

More information

Contents. Software CALIBRATION PROCEDURE NI TC-4353

Contents. Software CALIBRATION PROCEDURE NI TC-4353 CALIBRATION PROCEDURE NI TC-4353 This document contains the verification procedure for the National Instruments TC-4353. For more information about calibration solutions, visit ni.com/calibration. Contents

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

Register Map and Descriptions

Register Map and Descriptions Register Map and Descriptions Table 3-1. PCI-6110E Register Map Register Name Offset Address Type Size Hex Decimal Misc Register Group Serial Command 0D 13 Misc Command 0F 15 Magic 19 25 Write-Only Status

More information

NI ELVIS RIO Control Module

NI ELVIS RIO Control Module USER MANUAL NI ELVIS RIO Control Module The NI ELVIS RIO Control Module is a reconfigurable I/O (RIO) device that is used to design control, robotics, and mechatronics systems. This document contains pinouts,

More information

NI REM Remote I/O Overview DATASHEET. Digital Output Module for Remote I/O

NI REM Remote I/O Overview DATASHEET. Digital Output Module for Remote I/O DATASHEET NI REM-11178 Digital Output Module for Remote I/O Short circuit and overload protection Drives up to 500 ma per channel (up to 8A per module) Spring-terminal connectors allow fast wiring without

More information

USER GUIDE USB-634x/635x/636x OEM X Series USB-6341/6343/6356/6361/6363/6366 OEM Devices

USER GUIDE USB-634x/635x/636x OEM X Series USB-6341/6343/6356/6361/6363/6366 OEM Devices USER GUIDE USB-x/x/x OEM X Series USB-///// OEM Devices This document provides dimensions, pinouts, and information about the connectors, switch, LEDs, and mounting holes of the National Instruments USB-

More information

NI REM Remote I/O Overview DATASHEET. Digital Input Module for Remote I/O

NI REM Remote I/O Overview DATASHEET. Digital Input Module for Remote I/O DATASHEET NI REM-11154 Digital Input Module for Remote I/O Read digital input frequencies up to 5 khz Adjustable filter time to improve measurement quality Spring-terminal connectors allow fast wiring

More information

Contents. Software Requirements CALIBRATION PROCEDURE NI TB-4353

Contents. Software Requirements CALIBRATION PROCEDURE NI TB-4353 CALIBRATION PROCEDURE NI TB-4353 Français Deutsch ni.com/manuals This document contains information about verifying National Instruments PXIe-4353 modules using NI-DAQmx 9.3 and later. It also contains

More information

Where to Start with NI ELVIS

Where to Start with NI ELVIS Where to Start with NI ELVIS Conventions The National Instruments Educational Laboratory Virtual Instrumentation Suite (NI ELVIS) is a LabVIEW-based design and prototyping environment for university science

More information

INSTALLATION INSTRUCTIONS NI TB-2630B Terminal Block for the NI PXI-2530B. Contents. Introduction

INSTALLATION INSTRUCTIONS NI TB-2630B Terminal Block for the NI PXI-2530B. Contents. Introduction INSTALLATION INSTRUCTIONS Terminal Block for the Contents Introduction This guide describes how to install and connect signals to the National Instruments TB-2630B terminal block to configure your switch

More information

Chapter 6 Data Acquisition and Spectral Analysis System high-speed digitizer card for acquiring time-domain data. The digitizer is used in

Chapter 6 Data Acquisition and Spectral Analysis System high-speed digitizer card for acquiring time-domain data. The digitizer is used in Chapter 6 Data Acquisition and Spectral Analysis System 6.1 Introduction This chapter will discuss the hardware and software involved in developing the data acquisition and spectral analysis system. The

More information

OPERATING INSTRUCTIONS AND SPECIFICATIONS. NI 9208E 16-Channel, ±20 ma, 24-Bit Analog Input Module

OPERATING INSTRUCTIONS AND SPECIFICATIONS. NI 9208E 16-Channel, ±20 ma, 24-Bit Analog Input Module OPERATING INSTRUCTIONS AND SPECIFICATIONS NI 9208E 16-Channel, ±20 ma, 24-Bit Analog Input Module This document describes how to use the National Instruments 9208E and includes dimensions, pin assignments,

More information

NI REM Remote I/O Overview DATASHEET. Analog Output Module for Remote I/O

NI REM Remote I/O Overview DATASHEET. Analog Output Module for Remote I/O DATASHEET NI REM-11115 Analog Output Module for Remote I/O Four voltage output ranges to choose from (0 V to 10V, ±10V, 0 V to 5 V, and ±5V) Two current output ranges to choose from (0 ma to 20mA, 4 ma

More information

SCB-68 User Guide. 68-Pin Shielded Desktop Connector Block

SCB-68 User Guide. 68-Pin Shielded Desktop Connector Block SCB-6 User Guide 6-Pin Shielded Desktop Connector Block This guide describes how to connect and use the NI SCB-6 with 6-pin or 00-pin data acquisition (DAQ) devices and other NI products with a 6-pin SCSI

More information

PC104P-16AIO Bit Analog Input/Output PC104-Plus Board

PC104P-16AIO Bit Analog Input/Output PC104-Plus Board PC104P-16AIO168 16-Bit Analog Input/Output PC104-Plus Board With 16 Input Channels and 8 Output Channels (Similar GSC Product) Features Include: 16 Single-Ended or 8 Differential 16-Bit Scanned Analog

More information

Getting Started with the LabWindows /CVI Real-Time Module

Getting Started with the LabWindows /CVI Real-Time Module Getting Started with the LabWindows /CVI Real-Time Module This document provides an introduction to the LabWindows /CVI Real-Time Module. Refer to this document for installation and configuration instructions

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

SCXI Equipment and Other Test Requirements CALIBRATION PROCEDURE. Test Equipment. Software and Documentation

SCXI Equipment and Other Test Requirements CALIBRATION PROCEDURE. Test Equipment. Software and Documentation CALIBRATION PROCEDURE SCXI -1520 This document contains information and step-by-step instructions for calibrating the National Instruments SCXI-1520 module. Equipment and Other Test Requirements This section

More information

PXI Digital Pattern Instruments

PXI Digital Pattern Instruments Have a question? Contact Us. PRODUCT FLYER PXI Digital Pattern Instruments CONTENTS PXI Digital Pattern Instruments Detailed View of PXIe-6570 Digital Pattern Instrument Key Features NI-Digital Pattern

More information

Where to Start with NI ELVIS

Where to Start with NI ELVIS Where to Start with NI ELVIS Conventions Thank you for purchasing National Instruments Educational Laboratory Virtual Instrumentation Suite (NI ELVIS). This document explains how to set up and configure

More information

QUICK START GUIDE FOR DEMONSTRATION CIRCUIT DC BIT MICROPOWER NO LATENCY DELTA SIGMA ADC LTC2400 DESCRIPTION

QUICK START GUIDE FOR DEMONSTRATION CIRCUIT DC BIT MICROPOWER NO LATENCY DELTA SIGMA ADC LTC2400 DESCRIPTION LTC2400 DESCRIPTION This demonstration board features the LTC2400, a 24 bit high performance Σ analog-to-digital converter (ADC). The LTC2400 combines exemplary DC accuracy (INL +/-2ppm, 2.5µV offset,

More information

PXDAC4800. Product Information Sheet. 1.2 GSPS 4-Channel Arbitrary Waveform Generator FEATURES APPLICATIONS OVERVIEW

PXDAC4800. Product Information Sheet. 1.2 GSPS 4-Channel Arbitrary Waveform Generator FEATURES APPLICATIONS OVERVIEW Product Information Sheet PXDAC4800 1.2 GSPS 4-Channel Arbitrary Waveform Generator FEATURES 4 AC-Coupled or DC-Coupled DAC Channel Outputs 14-bit Resolution @ 1.2 GSPS for 2 Channels or 600 MSPS for 4

More information

R Series Digital I/O Module for PCI Express, 128 DIO, 512 MB DRAM, Kintex-7 160T FPGA. This document describes how to begin using the PCIe-7821R.

R Series Digital I/O Module for PCI Express, 128 DIO, 512 MB DRAM, Kintex-7 160T FPGA. This document describes how to begin using the PCIe-7821R. GETTING STARTED GUIDE NI PCIe-7821R R Series Digital I/O Module for PCI Express, 128 DIO, 512 MB DRAM, Kintex-7 160T FPGA This document describes how to begin using the PCIe-7821R. Safety Guidelines Caution

More information

LabVIEW Datalogging and Supervisory Control Module

LabVIEW Datalogging and Supervisory Control Module RELEASE AND UPGRADE NOTES LabVIEW Datalogging and Supervisory Control Module Version 8.6 Contents This document describes the system requirements and the process of installing the LabVIEW 8.6 Datalogging

More information

Dept. of Electrical, Computer and Biomedical Engineering. Data Acquisition Systems and the NI LabVIEW environment

Dept. of Electrical, Computer and Biomedical Engineering. Data Acquisition Systems and the NI LabVIEW environment Dept. of Electrical, Computer and Biomedical Engineering Data Acquisition Systems and the NI LabVIEW environment Data Acquisition (DAQ) Use of some data acquisition technique can be convenient, when not

More information

Getting Started with the LabVIEW Robotics Module Version 2011

Getting Started with the LabVIEW Robotics Module Version 2011 Getting Started with the LabVIEW Robotics Module Version 2011 Contents The LabVIEW Robotics Module is a software package that allows you to develop and deploy a robotics application using LabVIEW, other

More information

LabVIEW FPGA Module Release Notes

LabVIEW FPGA Module Release Notes LabVIEW FPGA Module Release Notes Version 1.1 Contents These release notes introduce new features and contain instructions for installing the LabVIEW FPGA Module, configuring FPGA devices, and selecting

More information

Getting Started with the LabVIEW Real-Time Module

Getting Started with the LabVIEW Real-Time Module Getting Started with the LabVIEW Real-Time Module Contents This document provides exercises to teach you how to develop a real-time project and VIs, from setting up RT targets to building, debugging, and

More information

NI REM Remote I/O Overview DATASHEET. Bus Coupler for Remote I/O

NI REM Remote I/O Overview DATASHEET. Bus Coupler for Remote I/O DATASHEET NI REM-11180 Bus Coupler for Remote I/O Deterministic communication and data transfer to host system EtherCAT cycle time of

More information

NI 5761R User Guide and Specifications

NI 5761R User Guide and Specifications NI 5761R User Guide and Specifications Contents The NI 5761 is a 25 MS/s analog input adapter module designed to work in conjunction with your NI FlexRIO FPGA module. This document contains signal information

More information