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

Size: px
Start display at page:

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

Transcription

1 Application Note SE001_0e.NET programming interface for R&S GTSL and R&S EGTSL Application Note Products: ı R&S CompactTSVP ı R&S PowerTSVP ı R&S GTSL ı R&S EGTSL This application note describes the use of R&S GTSL and R&S EGTSL in a.net programming environment. It shows the user how libraries and drivers generated using the C programming language can be used in applications based on.net technology. Note: Please find the most up-to-date document on our homepage This document is complemented by software. The software may be updated even if the version of the document remains unchanged

2 Table of Contents Table of Contents 1 Introductory Note Introduction The GTSL-.Net Wrapper Classes Technology Adding.NET Wrapper Classes Tips for Creating GTSL-.NET Wrapper Classes GTSL Device Driver Example: The Pfg Class GTSL Library Example: The ResMgr Class GTSL Programming Examples Direct Driver Calls Combi Test Installation Procedure Development Tools Compiler csc.exe from the.net Framework SDK Visual Studio Community Resources SE001_0e Rohde & Schwarz.NET programming interface for R&S GTSL and R&S EGTSL 2

3 Introductory Note 1 Introductory Note This application note uses the following abbreviations for Rohde & Schwarz instruments and software products: Unless a distinction must be made between the two, both the R&S CompactTSVP TS- PCA3 production test platform and the R&S PowerTSVP TS-PWA3 production test platform are referred to as the TSVP (test system versatile platform). Unless a distinction must be made between the two, both R&S GTSL (generic test software library) and R&S EGTSL (enhanced generic test software library) are referred to as GTSL. SE001_0e Rohde & Schwarz.NET programming interface for R&S GTSL and R&S EGTSL 3

4 Introduction 2 Introduction The TSVP production test platform is a standardized, modular platform for programcontrolled testing of modules and instruments during production or in the lab. GTSL is a collection of software libraries and the supporting software device drivers. These libraries control the TSVP hardware modules for performing test tasks such as measurements, wiring configurations or signal generation. GTSL was generated using the C/C++ programming language. To permit GTSL to be used from programming languages such as C#, Visual Basic.NET and other languages based on the.net framework, Rohde & Schwarz provides a software layer to link the two programming worlds. This software layer is presented in this application note. It is referred to here as the GTSL-.NET wrapper classes. This application note explains how the existing GTSL software libraries and software instrument drivers are encapsulated so that they can be accessed from the.net world. Finally, it explains how programming examples that are part of the GTSL installation can be used in a slightly modified form in the.net world under C#. SE001_0e Rohde & Schwarz.NET programming interface for R&S GTSL and R&S EGTSL 4

5 The GTSL-.Net Wrapper Classes 3 The GTSL-.Net Wrapper Classes 3.1 Technology In order to create a link layer between code written in C and code run in a.net environment, the 'unmanaged C code' must be embedded in the 'managed code' of a.net-based programming language such as C#. Running 'managed code' requires the use of a runtime library such as that made available by the.net framework, whereas the compiled 'unmanaged C code' is built into the machine language. Special care must be taken to replace the parameter interface for the embedded C functions with equivalent, i.e. compatible data types in the.net world. The GTSL-.NET wrapper classes for GTSL libraries and GTSL device drivers are provided to the user as the GTSL.dll class library in.net format, compatible with.net framework 3.5. The.dll extension is the only reminder of the old Win32 DLLs in GTSL, although the class library is not compatible with these in any way. The source code for all wrapper classes and the corresponding Microsoft Visual Studio solution are included. For each of a large number of GTSL libraries and GTSL device drivers, the class library for the GTSL-.NET wrapper layer includes a class with public methods representing the functions provided by that library or device driver Adding.NET Wrapper Classes In some situations, the user will have test libraries created in C or GTSL libraries for which no GTSL-.NET wrapper classes exist. This section describes how to create a.net wrapper class to allow the user to make these libraries available in a.net environment. This newly created wrapper class can be included in the published source code in the GTSL.dll. Wrapper classes insert functions from an existing DLL created in the C programming language by means of DllImport: GTSL.dll - source code module: Pfg.cs SE001_0e Rohde & Schwarz.NET programming interface for R&S GTSL and R&S EGTSL 5

6 The GTSL-.Net Wrapper Classes The PInvoke class lists all functions of a C GTSL device driver (in this example the device driver for the R&S TS-PFG signal generator), which are then published to the.net world using DllImport. The function rspfg_configureoperationmode was used here as being representative for all functions of the driver. Its parameter list includes the three parameter types HandleRef, string and int. The header file of the C device driver contains the rspfg_configureoperationmode function with the following parameter list: rspfg.dll - source code module: rspfg.h The type definitions for the parameter list is taken from the National Instruments VISA software layer (VISA: Virtual Instrument Software Architecture). The VISA type definitions correspond to the ANSI-C data types as well as to the C# data types used in the.net wrapper classes as listed in the following table. Instead of the C# data types, the wrapper classes could just as easily use the equivalent.net data types. NI VISA ANSI-C C#.NET ViSession* unsigned long* out IntPtr (1) out IntPtr (1) ViSession unsigned long HandleRef (2) HandleRef (2) ViConstString const char* string String ViRsrc char* string String ViStatus signed long int Int32 ViStatus* signed long * out int out Int32 ViAttr unsigned long uint UInt32 ViString char* string String ViChar[] char[] StringBuilder StringBuilder ViBoolean unsigned short ushort UInt16 ViBoolean* unsigned short out ushort out UInt16 ViInt16 signed short short Int16 ViInt16* signed short* out short out Int16 ViUInt32 unsigned long uint UInt32 ViUInt32* unsigned long* out uint out UInt32 ViInt32 signed long int Int32 ViInt32* signed long * out int out Int32 ViReal64 double double Double ViReal64* double* out double out Double ViReal64[] double[] double[] Double[] (1) IntPtr is a handle to a resource such as is returned by a GTSL device driver when the C function <driver_name>_initwithoptions( ) is called. (2) HandleRef is an object that contains a handle to a resource (IntPtr). The Invoke mechanism passes it to the unmanaged code, i.e. to the C functions of the GTSL device driver when they are called. SE001_0e Rohde & Schwarz.NET programming interface for R&S GTSL and R&S EGTSL 6

7 The GTSL-.Net Wrapper Classes All C functions of a GTSL device driver added to the private class PInvoke by means of DllImport are again encapsulated in public methods in order to provide error handling and also to simplify the parameter signature somewhat. These methods can then be called by users in their own applications. All GTSL-.NET wrapper classes that control the TSVP hardware modules are derived from the TsvpInstrument base class. This base class defines abstract methods that must be included in all wrapper classes. The wrapper class uses methods of the same name to overwrite these with the override modifier. The TsvpInstrument base class additionally defines data types in the form of enums that are used by all derived wrapper classes. The base class also includes classes for error handling and administration of the attributes for the individual GTSL device drivers and their wrappers. Attributes that are found in all wrappers are included here in the attribute dictionary, which lists the attributes such as name, data type, reuse in various channels, read/write access and a brief description. The attribute dictionary can additionally include special attributes for a specific GTSL-.NET wrapper class Tips for Creating GTSL-.NET Wrapper Classes The.NET programming environment handles several items more elegantly than was the case in the C world. Some brief examples are provided here Length of array parameters The C language GTSL device drivers and libraries contain functions that receive an array of elements in the parameter list. If the length of the array is variable instead of fixed, an additional parameter must be specified here with the length of the array. For example, the rspfg_createarbwaveform function in the C device driver for the R&S TS-PFG signal generator: rspfg.dll - source code module: rspfg.h The wfmsize parameter defines the number of elements in the array wfmdata[]. The length parameter is no longer required in the corresponding method in the GTSL-.NET wrapper. The length of the array is determined via the Length method in the array object and thus transferred in the call of the corresponding PInvoke method: SE001_0e Rohde & Schwarz.NET programming interface for R&S GTSL and R&S EGTSL 7

8 The GTSL-.Net Wrapper Classes GTSL.dll - source code module: Pfg.cs Using the StringBuilder class: size adjustments Several GTSL device driver functions return information to the user in the form of one or more strings. One example is the C function named <driver_name>_revision_query, which returns version information about the software device driver and about the firmware for the addressed hardware. The call to this function must include two strings with a minimum length of 256 characters. If the strings transferred to this function in a C application are too short, it can result in difficult-to-find errors or system crashes. C# provides a convenient security mechanism for preventing this problem. It ensures that in all GTSL-.NET wrapper classes, objects of the StringBuilder class that the user transfers to the corresponding methods either provide sufficient memory or are increased in size as needed. The base class TsvpInstrument provides the EnsureStringBuilderCapacity method for this purpose. It checks the size of the transferred StringBuilder object. If not sufficient, the capacity of the object is increased: GTSL.dll - source code module: TsvpInstrument.cs The wrapper class derived from the base class uses this method to check the StringBuilder objects that the user transfers to a given method. The example below uses the RevisionQuery method: GTSL.dll - source code module: Pfg.cs SE001_0e Rohde & Schwarz.NET programming interface for R&S GTSL and R&S EGTSL 8

9 The GTSL-.Net Wrapper Classes Enum and classes of parameter values In the C language GTSL device drivers and libraries, the parameter values that can be transferred to functions are usually defined in the associated header file using the compiler statement #define. In a.net programming environment, groups of parameter values are typically combined either in an enum (in the case of integers) or in a class. During the method definition, the name of the enum or the class of parameter values is defined as the parameter type. This is a benefit to the user when using the method in an application because the code editor in Microsoft Visual Studio uses the IntelliSense function to display a list of all possible parameter values for the current position. The user selects the desired value from the list using the arrow keys and then presses the Enter key to accept. This reduces the likelihood of invalid parameter values or mistyped parameter names. The IntelliSense function offered by the Microsoft Visual Studio code editor is described in more detail in the following chapter Converting parameter types: string and integer <> enum The previous section explained why enum parameters are preferred in the GTSL-.NET wrappers, while the C programming world often uses predefined integer parameter values or strings (character arrays) as the input and output parameters. This means that in the wrapper classes, input parameters of the enum type must be converted into strings or integer values, which are then transferred to the C device drivers. This process is performed in reverse for output parameters. For string input parameters, the conversion can be performed easily using the GetName() method of the enum class. The only consideration is to ensure that the names of the enum elements match the required strings. In the case of integer input parameters, the enum element must be forced into an integer data type by prefixing the (int) type conversion operator to perform an explicit type conversion. An additional consideration for output parameters is that parameter values returned by a C function might not have a matching value in the enum. In this case, integer parameters are checked using the enum method IsDefined() to determine whether the returned value is defined in the enum. If so, the parameter value can be converted into the enum type by means of the type conversion. In the case of string parameters returned by a C function, the enum method TryParse() can check whether the string matches an element name for the enum. If so, the method returns the identified enum value. SE001_0e Rohde & Schwarz.NET programming interface for R&S GTSL and R&S EGTSL 9

10 The GTSL-.Net Wrapper Classes 3.2 GTSL Device Driver Example: The Pfg Class In this example, a C application calls the R&S TS-PFG signal generator function rspfg_configurestandardwaveform for the GTSL device driver DLL rspfg.dll as follows: PfgCExample.exe - source code module: PfgCExample.c The same functionality in a C# application is shown on the next page: SE001_0e Rohde & Schwarz.NET programming interface for R&S GTSL and R&S EGTSL 10

11 The GTSL-.Net Wrapper Classes PfgCSharpExample.exe - source code module: PfgCSharpExample.cs First, the new operator generates an instance of the Pfg class. In this example, signalgenerator was used as the name of the instance. All public methods of that class can then be called, e.g. signalgenerator.configurestandardwaveform( ). The namespace of the GTSL.dll being used, which includes the Pfg class, is named RohdeSchwarz.Gtsl. In the above example, this is included in the using list at the start of the code. To permit the GTSL.dll to be used in the user's application, it must be inserted into the project, for example by using the "Add reference..." command in Microsoft Visual Studio. The parameters are transferred to the methods more conveniently than with the C functions. The signal generator channel being configured is easily selected using the IntelliSense function in the Visual Studio development environment, for example. In the corresponding C function, a string containing the channel name would have to be transferred at this point. SE001_0e Rohde & Schwarz.NET programming interface for R&S GTSL and R&S EGTSL 11

12 The GTSL-.Net Wrapper Classes The class diagram created by Visual Studio for the Pfg class displays all methods, enum types (e.g. the two signal generator channels) and additional subclasses representing parameter constants. All methods of the Pfg class: SE001_0e Rohde & Schwarz.NET programming interface for R&S GTSL and R&S EGTSL 12

13 The GTSL-.Net Wrapper Classes Examples of enum types defined in the Pfg class: Selects one of the two channels of the PFG signal generator. Possible default waveforms. Signal generator trigger inputs for starting a waveform output. Three output modes for the generator: Default waveforms Arbitrary waveforms Arbitrary waveform sequences SE001_0e Rohde & Schwarz.NET programming interface for R&S GTSL and R&S EGTSL 13

14 The GTSL-.Net Wrapper Classes 3.3 GTSL Library Example: The ResMgr Class The resource manager is a central component for GTSL libraries. It includes functions for administering the instrument setup in a test system. Like all other GTSL software libraries, the resource manager is written using the C programming language. In a C application, the RESMGR_Setup function is called as follows: GtslLibraryExampleC.exe - source code module: GtslLibraryExampleC.c SE001_0e Rohde & Schwarz.NET programming interface for R&S GTSL and R&S EGTSL 14

15 The GTSL-.Net Wrapper Classes In a C# application, the same function is called as follows: GtslLibraryExampleCSharp.exe - source code module: GtslLibraryExampleCSharp.cs In this example, it can be seen that the parameter list of the setup method is significantly shorter than the equivalent setup function in C. This is because the return parameters for assessing any errors could be eliminated. The Exception mechanism from C# is used for error handling. Like all other wrapper classes for GTSL libraries, the ResMgr class is derived from the base class GtslCommon. This includes classes for error handling and methods used by all library wrapper classes. SE001_0e Rohde & Schwarz.NET programming interface for R&S GTSL and R&S EGTSL 15

16 The GTSL-.Net Wrapper Classes The class diagram generated by Visual Studio for the ResMgr class shows all methods, defined constants and error codes in the class: SE001_0e Rohde & Schwarz.NET programming interface for R&S GTSL and R&S EGTSL 16

17 GTSL Programming Examples 4 GTSL Programming Examples 4.1 Direct Driver Calls This example shows how to combine GTSL library calls and GTSL device driver calls within an application. The setup method of the GTSL-.NET wrapper class for a GTSL library opens all of the device drivers required by the library. If a device driver is used by more than one GTSL library, the session handle for the driver is automatically shared by all participating libraries. The GTSL resource manager manages the exchange of the session handle for device drivers. It administers the session handle for each instrument contained in the physical.ini configuration file for the test system. If a device driver must be called directly from the application, for example because the GTSL library does not support a specific method call, the corresponding session handle must be requested of the resource manager. In a mixed application of GTSL libraries and GTSL device drivers, a device driver must not be opened twice, i.e. via the library and in parallel directly via the device driver. Although it is theoretically possible, it conflicts with the 'state caching' mechanism of the internal device state used by the IVI drivers. This data is no longer valid if the device is accessed via two different driver instances. Note that in the following C# source code, the session handle for the PFG signal generator requested of the resource manager is transferred to the overloaded constructor of the Pfg class when the class is instantiated. This serves to inform the instance that it need not (and in fact must not) open the device driver itself. A subsequent call of Pfg.Init( ) would generate an exception with the following error text: "This instance, created by using a resource manager handle, does not allow calling this method!" : "The device is already initialized!". This same applies to the Pfg.Close( ) method, which also must not be called in this situation. The Cleanup method of the GTSL-.NET wrapper class of the last GTSL library which uses the PFG signal generator is responsible for closing the device driver. The session handle becomes invalid after the Cleanup method of the library ends. No more method calls of the instance of class Pfg are possible then. SE001_0e Rohde & Schwarz.NET programming interface for R&S GTSL and R&S EGTSL 17

18 GTSL Programming Examples - continued on next page - SE001_0e Rohde & Schwarz.NET programming interface for R&S GTSL and R&S EGTSL 18

19 GTSL Programming Examples Source: ProgramDirectDriverCall.cs SE001_0e Rohde & Schwarz.NET programming interface for R&S GTSL and R&S EGTSL 19

20 GTSL Programming Examples 4.2 Combi Test The Combi Test program shows how to create a combined in-circuit test and functional test application in C# using the following GTSL libraries: - Resource Manager - Signal Routing Library - In-Circuit Test Library - continued on next page - SE001_0e Rohde & Schwarz.NET programming interface for R&S GTSL and R&S EGTSL 20

21 GTSL Programming Examples Source: ProgramCombiTest.cs SE001_0e Rohde & Schwarz.NET programming interface for R&S GTSL and R&S EGTSL 21

22 Installation Procedure 5 Installation Procedure The installation program for the source code of the GTSL-.NET wrapper classes can be downloaded from the Rohde & Schwarz homepage: The name of the installation file is InstallerGtslWrapper.msi. Installation is started by right-clicking the file and selecting 'Install' from the context menu. If GTSL is already installed on the target machine the GTSL-.NET wrapper classes will be installed to directory <GTSL directory>\develop\.net wrapper. If GTSL is not installed yet, the installation directory is C:\Program Files (x86)\rohde-schwarz\gtsl\develop\.net wrapper. To build the GTSL.dll simply open the Visual Studio solution GtslWrapper.sln which is located in the installation directory and choose in the Configuration Manager whether to build a debug or release version of the DLL. After the build process the GTSL.dll can be found in the directory \.net wrapper\gtsl\bin\release (or Debug). To use the GTSL-.NET wrapper classes in any project either the GTSL.dll can be added to the project with the menu 'Add reference ' in Visual Studio or all relevant source code files can be added to the project. The necessary source code files are located in the subdirectories Common, Instruments and Libraries below directory \.net wrapper\gtsl\. SE001_0e Rohde & Schwarz.NET programming interface for R&S GTSL and R&S EGTSL 22

23 Development Tools 6 Development Tools Users who do not install paid copies of Microsoft Visual Studio Professional or Enterprise Edition on their development PC still have options to create, quickly and at no additional cost, their own C# test applications that include the GTSL-.NET wrapper classes. 6.1 Compiler csc.exe from the.net Framework SDK The.NET framework SDK includes a C# compiler that can be launched from the command line. It is called csc.exe and is located in the following path: C:\Windows\Microsoft.NET\Framework\v3.5\csc.exe. The code to be compiled must be created in a separate text editor. This path should be added to the Windows system path variable Path so that the compiler can be called from any directory on the PC. The Combi Test programming example from section 4.2 is shown here as an example of a call of the csc.exe compiler: This call generates the console application ProgramCombiTest.exe. It is a 32-bit application that references the GTSL.dll class library. 6.2 Visual Studio Community Microsoft offers a free version of its Visual Studio development environment, called Visual Studio Community. This version can be used under the conditions published by Microsoft. The functionality corresponds to Visual Studio Professional Edition. Visual Studio Community is intended to replace Visual Studio Express, which is also free of charge. As of March 2016, the current version of Visual Studio Express 2015 is available yet. SE001_0e Rohde & Schwarz.NET programming interface for R&S GTSL and R&S EGTSL 23

24 Resources 7 Resources The installation program for the source code of the GTSL-.NET wrapper classes can be downloaded from the Rohde & Schwarz homepage: A compressed file containing the GTSL installation DVD can be downloaded after registering with Rohde & Schwarz GLORIS: See For more information about the R&S CompactTSVP and R&S PowerTSVP production test platforms and about the associated R&S GTSL software package, go to: SE001_0e Rohde & Schwarz.NET programming interface for R&S GTSL and R&S EGTSL 24

25 PAD-T-M: /02.05/EN/ Resources Rohde & Schwarz The Rohde & Schwarz electronics group offers innovative solutions in the following business fields: test and measurement, broadcast and media, secure communications, cybersecurity, radiomonitoring and radiolocation. Founded more than 80 years ago, this independent company has an extensive sales and service network and is present in more than 70 countries. The electronics group is among the world market leaders in its established business fields. The company is headquartered in Munich, Germany. It also has regional headquarters in Singapore and Columbia, Maryland, USA, to manage its operations in these regions. Regional contact Europe, Africa, Middle East North America TEST RSA ( ) customer.support@rsa.rohde-schwarz.com Latin America customersupport.la@rohde-schwarz.com Asia Pacific customersupport.asia@rohde-schwarz.com China customersupport.china@rohde-schwarz.com Sustainable product design ı ı ı Environmental compatibility and eco-footprint Energy efficiency and low emissions Longevity and optimized total cost of ownership This Choose an item. and the supplied programs may only be used subject to the conditions of use set forth in the download area of the Rohde & Schwarz website. R&S is a registered trademark of Rohde & Schwarz GmbH & Co. KG; Trade names are trademarks of the owners. Rohde & Schwarz GmbH & Co. KG Mühldorfstraße Munich, Germany Phone Fax SE001_0e Rohde & Schwarz.NET programming interface for R&S GTSL and R&S EGTSL 25

BitLocker White Paper Windows 10

BitLocker White Paper Windows 10 BitLocker White Paper Windows 10 This white paper gives detailed instructions how to enable BitLocker on a measurement device. BitLocker White Paper Windows 10 7.2018 1178.8859.02-01 Table of Contents

More information

R&S QuickStep Test Executive Software Flexibility and excellent performance

R&S QuickStep Test Executive Software Flexibility and excellent performance Product Brochure Version 05.00 R&S QuickStep Test Executive Software Flexibility and excellent performance QuickStep_bro_en_3607-2249-12_v0500.indd 1 21.12.2017 16:45:09 R&S QuickStep Test Executive Software

More information

R&S RTC1002 Digital Oscilloscope Release Notes Firmware Version

R&S RTC1002 Digital Oscilloscope Release Notes Firmware Version R&S RTC1002 Digital Oscilloscope Release Notes Firmware Version 06.100 These Release Notes describe the following models and options of the R&S Digital Oscilloscope: R&S RTC1002 Digital Oscilloscope, order

More information

R&S MSD Modular System Device Flexible antenna switching and rotator control

R&S MSD Modular System Device Flexible antenna switching and rotator control MSD_bro_en_3606-7082-12_v0300.indd 1 Product Brochure 03.00 Radiomonitoring & Radiolocation Modular System Device Flexible antenna switching and rotator control 28.10.2015 12:46:19 Modular System Device

More information

R&S GNSS Test Automation Release Notes Software Version 1.3.2

R&S GNSS Test Automation Release Notes Software Version 1.3.2 R&S GNSS Test Automation Release Notes Software Version 1.3.2 2018 Rohde & Schwarz GmbH & Co. KG Muehldorfstr. 15, 81671 Munich, Germany Phone: +49 89 41 29-0 Fax: +49 89 41 29 12-164 E-mail: mailto:info@rohde-schwarz.com

More information

R&S ELEKTRA EMC Test Software Swift and reliable measurement of electromagnetic disturbances

R&S ELEKTRA EMC Test Software Swift and reliable measurement of electromagnetic disturbances R&S ELEKTRA EMC Test Software Swift and reliable measurement of electromagnetic disturbances Product Brochure Version 01.01 R&S ELEKTRA EMC Test Software At a glance The R&S ELEKTRA EMC test software is

More information

LabVIEW driver history for the R&S HMC8012 Driver Documentation

LabVIEW driver history for the R&S HMC8012 Driver Documentation LabVIEW driver history for the R&S HMC8012 Driver Documentation Products: R&S HMC8012 Driver history for LabVIEW Miloslav Macko July 26, 2017 Table of Contents Table of Contents 1 Supported Instruments...

More information

R&S FSL Spectrum Analyzer Resolving Security Issues When Working in Secure Areas

R&S FSL Spectrum Analyzer Resolving Security Issues When Working in Secure Areas Spectrum Analyzer Resolving Security Issues When Working in Secure Areas Based upon the user s security requirements, this document describes the Rohde&Schwarz options available to address the user s spectrum

More information

R&S AVG Pattern Import Release Notes Firmware Version 02.25

R&S AVG Pattern Import Release Notes Firmware Version 02.25 R&S AVG Pattern Import Release Notes Firmware Version 02.25 2010-2015 Rohde & Schwarz GmbH & Co. KG Muehldorfstr. 15, 81671 Munich, Germany Phone: +49 89 41 29-0 Fax: +49 89 41 29 12-164 E-mail: mailto:info@rohde-schwarz.com

More information

TopSec Mobile Secure voice encryption for smartphones and laptops

TopSec Mobile Secure voice encryption for smartphones and laptops Secure Communications Product Brochure 02.00 TopSec Mobile Secure voice encryption for smartphones and laptops TopSec Mobile At a glance The TopSec Mobile is a mobile encryption device for secure worldwide

More information

Replacing R&S CMU200 with R&S CMW500 in 2G and 3G Speech Test Applications Application Note

Replacing R&S CMU200 with R&S CMW500 in 2G and 3G Speech Test Applications Application Note Replacing R&S CMU200 with R&S CMW500 in 2G and 3G Speech Test Applications Thomas Lechner, 1GPM 17-Jul-14- Replacing R&S CMU200 with R&S CMW500 in 2G and 3G Speech Test Applications Application Note Products:

More information

R&S ESU EMI Test Receiver. Release Notes. Firmware Version V5.74 SP1. Only an ESU with Windows 7 Operating System is supported

R&S ESU EMI Test Receiver. Release Notes. Firmware Version V5.74 SP1. Only an ESU with Windows 7 Operating System is supported Release Notes Test and Measurement PAD-T-M: 3574.3288.02/02.00/CI/1/EN R&S ESU EMI Test Receiver Release Notes Firmware Version V5.74 SP1 These Release Notes are for following models of the R&S EMI Test

More information

R&S RTA4000 Digital Oscilloscope Release Notes Firmware Version

R&S RTA4000 Digital Oscilloscope Release Notes Firmware Version Digital Oscilloscope Release Notes Firmware Version 01.100 These Release Notes describe the following models and options of the R&S Digital Oscilloscope: R&S RTA4004, Digital Oscilloscope order no. 1335.7700K04

More information

TopSec Product Family Voice encryption at the highest security level

TopSec Product Family Voice encryption at the highest security level Secure Communications Product Brochure 01.01 TopSec Product Family Voice encryption at the highest security level TopSec Product Family At a glance The TopSec product family provides end-to-end voice encryption

More information

R&S CLIPSTER Mastering excellence.

R&S CLIPSTER Mastering excellence. R&S CLIPSTER Mastering excellence. 5215.7639.32 01.02 www.rohde-schwarz.com/clipster Rohde-Schwarz_Clipster_fly_en_5215_7639_32_v0102.indd 3 09.11.18 16:09 R&S CLIPSTER the gold standard for mastering

More information

Sending s without the risk! The Rohde & Schwarz Secure Web Interface

Sending  s without the risk! The Rohde & Schwarz Secure  Web Interface Sending e-mails without the risk! The Rohde & Schwarz Secure E-Mail Web Interface Quick Reference Guide V1.0.4 Only the most recent version of this document is valid. Contents I List of figures... 2 1

More information

R&S VISA Release Notes Software Version 5.8.6

R&S VISA Release Notes Software Version 5.8.6 R&S VISA Release Notes Software Version 5.8.6 2018 Rohde & Schwarz GmbH & Co. KG Muehldorfstr. 15, 81671 Munich, Germany Phone: +49 89 41 29-0 Fax: +49 89 41 29 12-164 E-mail: mailto:info@rohde-schwarz.com

More information

R&S RECAL + Release Notes Software Version 4.01

R&S RECAL + Release Notes Software Version 4.01 R&S RECAL + Release Notes Software Version 4.01 2018 Rohde & Schwarz GmbH & Co. KG Muehldorfstr. 15, 81671 Munich, Germany Phone: +49 89 41 29-0 Fax: +49 89 41 29 12-164 E-mail: mailto:info@rohde-schwarz.com

More information

R&S SGT100A RF Source Base Unit Release Notes FW Version

R&S SGT100A RF Source Base Unit Release Notes FW Version R&S SGT100A RF Source Base Unit Release Notes FW Version 3.50.124.71 2017 Rohde & Schwarz GmbH & Co. KG Muehldorfstr. 15, 81671 Munich, Germany Phone: +49 89 41 29-0 Fax: +49 89 41 29 12 164 E-mail: mailto:info@rohde-schwarz.com

More information

R&S Spectrum Rider FPH Release Notes Firmware Version V1.40

R&S Spectrum Rider FPH Release Notes Firmware Version V1.40 R&S Spectrum Rider FPH Release Notes Firmware Version V1.40 2017 Rohde & Schwarz GmbH & Co. KG Muehldorfstr. 15, 81671 Munich, Germany Phone: +49 89 41 29-0 Fax: +49 89 41 29 12-164 E-mail: mailto:info@rohde-schwarz.com

More information

R&S Spectrum Rider FPH Release Notes Firmware Version V1.50

R&S Spectrum Rider FPH Release Notes Firmware Version V1.50 R&S Spectrum Rider FPH Release Notes Firmware Version V1.50 2017 Rohde & Schwarz GmbH & Co. KG Muehldorfstr. 15, 81671 Munich, Germany Phone: +49 89 41 29-0 Fax: +49 89 41 29 12-164 E-mail: mailto:info@rohde-schwarz.com

More information

R&S AVBrun Sequencer Software. Release Notes. Firmware Version Release Notes. Broadcasting

R&S AVBrun Sequencer Software. Release Notes. Firmware Version Release Notes. Broadcasting Release Notes Broadcasting PAD-T-M: 3574.3288.02/02.00/CI/1/EN/ R&S AVBrun Sequencer Software Release Notes Firmware Version 01.93 2012-2016 Rohde & Schwarz GmbH & Co. KG Muehldorfstr. 15, 81671 Munich,

More information

R&S Broadcast Drive Test Release Notes Software Version 03.13

R&S Broadcast Drive Test Release Notes Software Version 03.13 R&S Broadcast Drive Test Release Notes Software Version 03.13 2015 Rohde & Schwarz GmbH & Co. KG Muehldorfstr. 15, 81671 Munich, Germany Phone: +49 89 41 29-0 Fax: +49 89 41 29 12 164 E-mail: mailto:info@rohde-schwarz.com

More information

R&S ELEKTRA Release Notes Software Version V2.10

R&S ELEKTRA Release Notes Software Version V2.10 R&S ELEKTRA Release Notes Software V2.10 ELEMI-E 2018 Rohde & Schwarz GmbH & Co. KG Muehldorfstr. 15, 81671 Munich, Germany Phone: +49 89 41 29-0 Fax: +49 89 41 29 12-164 E-mail: mailto:info@rohde-schwarz.com

More information

R&S SMB100B Release Notes Firmware Version

R&S SMB100B Release Notes Firmware Version R&S SMB100B Release Notes Firmware Version 4.50.074.45 2018 Rohde & Schwarz GmbH & Co. KG Muehldorfstr. 15, 81671 Munich, Germany Phone: +49 89 41 29-0 Fax: +49 89 41 29 12-164 E-mail: mailto:info@rohde-schwarz.com

More information

How to Apply MS17-10 to prevent WannaCrypt Attacks

How to Apply MS17-10 to prevent WannaCrypt Attacks How to Apply MS17-10 to prevent WannaCrypt Attacks Document date: 8.8.2017 This document describes the procedure how to apply the Microsoft patches to R&S devices running Windows XP or Win7 operating systems

More information

R&S NRP-Z51/-Z52/-Z55/-Z56/- Z57/-Z58 Thermal Power Sensors Release Notes

R&S NRP-Z51/-Z52/-Z55/-Z56/- Z57/-Z58 Thermal Power Sensors Release Notes R&S NRP-Z51/-Z52/-Z55/-Z56/- Z57/-Z58 Thermal Power Sensors Release Notes 2016 Rohde & Schwarz GmbH & Co. KG 81671 Munich, Germany Printed in Germany Subject to change Data without tolerance limits is

More information

How to Apply MS17-10 to prevent WannaCrypt Attacks

How to Apply MS17-10 to prevent WannaCrypt Attacks How to Apply MS17-10 to prevent WannaCrypt Attacks For Video Tester R&S VTC, R&S VTE, R&S VTS and Video Generator R&S DVSG. Document date: 2017-08-03 This document describes the procedure how to apply

More information

R&S NGE100 Power Supply Series Reduced to the max

R&S NGE100 Power Supply Series Reduced to the max R&S NGE100 Power Supply Series Reduced to the max year Product Brochure Version 01.01 R&S NGE100 Power Supply Series At a glance The R&S NGE100 power supply series consists of robust, high-performance,

More information

R&S CMW Bluetooth Release Notes Software Version V3.2.70

R&S CMW Bluetooth Release Notes Software Version V3.2.70 R&S CMW Bluetooth Release Notes Software 2014 Rohde & Schwarz GmbH & Co. KG Muehldorfstr. 15, 81671 Munich, Germany Phone: +49 89 41 29-0 Fax: +49 89 41 29 12-164 E-mail: mailto:info@rohde-schwarz.com

More information

Voice Quality Measurements with R&S ROMES. Application Note

Voice Quality Measurements with R&S ROMES. Application Note Voice Quality Measurements with R&S ROMES Application Note 1SP52 Products: R&S ROMES This document introduces Voice Quality Measurements with R&S ROMES and describes the configuration of the drive test

More information

R&S ESR EMI Test Receiver Release Notes Firmware Version V3.36 SP2

R&S ESR EMI Test Receiver Release Notes Firmware Version V3.36 SP2 R&S ESR EMI Test Receiver Release Notes Firmware Version V3.36 SP2 These Release Notes are for following models of the R&S EMI Test Receiver: R&S ESR3, order no. 1316.3003K03 R&S ESR7, order no. 1316.3003K07

More information

Simple Sequencing Tool for SCPI Commands Application Note

Simple Sequencing Tool for SCPI Commands Application Note Simple Sequencing Tool for SCPI Commands Application Note Products: R&S UPV R&S UPV-K1 This document describes an application program for sending a sequence of logged SCPI commands to the firmware of the

More information

R&S Pulse Sequencer DFS Software Release Notes Software Version 1.6

R&S Pulse Sequencer DFS Software Release Notes Software Version 1.6 R&S Pulse Sequencer DFS Software Release Notes Software Version 1.6 2018 Rohde & Schwarz GmbH & Co. KG Muehldorfstr. 15, 81671 Munich, Germany Phone: +49 89 41 29-0 Fax: +49 89 41 29 12-164 E-mail: mailto:info@rohde-schwarz.com

More information

R&S ESW Test Receiver Release Notes Firmware Version V1.40 SP1

R&S ESW Test Receiver Release Notes Firmware Version V1.40 SP1 R&S ESW Test Receiver Release Notes Firmware Version V1.40 SP1 These Release Notes are for following models of the R&S ESW EMI Test Receiver: R&S ESW8, order no. 1328.4100.08 R&S ESW26, order no. 1328.4100.26

More information

R&S TSMA Release Notes Firmware Version

R&S TSMA Release Notes Firmware Version R&S TSMA Release Notes Firmware Version 1.32.04.00 2018 Rohde & Schwarz GmbH & Co. KG Muehldorfstr. 15, 81671 Munich, Germany Phone: +49 89 41 29-0 Fax: +49 89 41 29 12-164 E-mail: mailto:info@rohde-schwarz.com

More information

R&S SMA100B Release Notes Firmware Version

R&S SMA100B Release Notes Firmware Version R&S SMA100B Release Notes Firmware Version 4.30.040.33 The Release Note is for the following model of the R&S SMA100B RF and Microwave Signal Generator: R&S SMA100B, order no. 1419.8888K02 2018 Rohde &

More information

Migration to Visual Studio.NET 2005 of proprietary Test Cases on the GSM Protocol Tester R&S CRTU-G

Migration to Visual Studio.NET 2005 of proprietary Test Cases on the GSM Protocol Tester R&S CRTU-G Products: R&S CRTU-G Migration to Visual Studio.NET 2005 of proprietary Test Cases on the GSM Protocol Tester R&S CRTU-G Application Note Due to the fact that Microsoft does not maintain the Visual Studio.NET

More information

R&S TSMAx Release Notes Firmware Version

R&S TSMAx Release Notes Firmware Version R&S TSMAx Release Notes Firmware Version 03.00.11.00 2019 Rohde & Schwarz GmbH & Co. KG Muehldorfstr. 15, 81671 Munich, Germany Phone: +49 89 41 29-0 Fax: +49 89 41 29 12-164 E-mail: mailto:info@rohde-schwarz.com

More information

R&S Pulse Sequencer DFS Software Release Notes Software Version 1.7

R&S Pulse Sequencer DFS Software Release Notes Software Version 1.7 R&S Pulse Sequencer DFS Software Release Notes Software Version 1.7 2018 Rohde & Schwarz GmbH & Co. KG Muehldorfstr. 15, 81671 Munich, Germany Phone: +49 89 41 29-0 Fax: +49 89 41 29 12-164 E-mail: mailto:info@rohde-schwarz.com

More information

Resolving Security Issues When Working with the R&S ESIB in Secure Areas

Resolving Security Issues When Working with the R&S ESIB in Secure Areas Products: R&S EMI Test Receiver ESIB Resolving Security Issues When Working with the R&S ESIB in Secure Areas Based upon the user s requirements, this document describes the Rohde&Schwarz options available

More information

R&S DigIConf Software Release Notes Firmware Version Build 170 SP1

R&S DigIConf Software Release Notes Firmware Version Build 170 SP1 R&S DigIConf Software Release Notes Firmware Version 2.20.360.86 Build 170 SP1 2012 Rohde & Schwarz GmbH & Co. KG 81671 Munich, Germany Printed in Germany Subject to change Data without tolerance limits

More information

R&S RTO and R&S RTE Oscilloscopes Release Notes Firmware Version

R&S RTO and R&S RTE Oscilloscopes Release Notes Firmware Version R&S RTO and R&S RTE Oscilloscopes Release Notes Firmware Version 3.70.1.0 These Release Notes are for following models of the R&S RTO and R&S RTE: R&S RTO 2002, order no. 1329.7002K02, R&S RTO 2004, order

More information

R&S NRPV Virtual Power Meter Release Notes Application Version 3.2

R&S NRPV Virtual Power Meter Release Notes Application Version 3.2 R&S NRPV Virtual Power Meter Release Notes Application Version 3.2 2011-2017 Rohde & Schwarz GmbH & Co. KG 81671 Munich, Germany Subject to change Data without tolerance limits is not binding. R&S is a

More information

Firmware Version Build 170 SP1

Firmware Version Build 170 SP1 Test and Measurement Release Notes R&S DigIConf Software Release Notes Firmware Version 2.20.360.86 Build 170 SP1 2012 Rohde & Schwarz GmbH & Co. KG 81671 Munich, Germany Printed in Germany Subject to

More information

Brochure Version IP-based broadcast contribution and primary distribution revolution or evolution?

Brochure Version IP-based broadcast contribution and primary distribution revolution or evolution? Brochure Version 01.00 IP-based broadcast contribution and primary distribution revolution or evolution? Over many decades, the broadcast industry has experienced its fair share of technological revolutions

More information

NQDI Classic Transform data into insights to support business decisions

NQDI Classic Transform data into insights to support business decisions Product Brochure 03.00 NQDI Classic Transform data into insights to support business decisions Powered by NQDI Classic Transform data into insights to support business decisions Today s increasing network

More information

R&S SpycerBox Ultra TL Spec Sheet

R&S SpycerBox Ultra TL Spec Sheet Preliminary Spec Sheet Rohde & Schwraz DVS GmbH 12.2014-

More information

R&S Power Meter NRP Release Notes Firmware Version

R&S Power Meter NRP Release Notes Firmware Version R&S Power Meter NRP Release Notes Firmware Version 06.03.020 2011 Rohde & Schwarz GmbH & Co. KG 81671 Munich, Germany Printed in Germany Subject to change Data without tolerance limits is not binding.

More information

R&S EGTSL Enhanced Generic Test Software Library User Manual

R&S EGTSL Enhanced Generic Test Software Library User Manual R&S EGTSL Enhanced Generic Test Software Library User Manual (;[YXZ) Version 14 User Manual 1143414042 This Software Description is valid for the following software versions. R&S GTSL version 3.00 and

More information

R&S DSA DOCSIS Signal Analyzer Release Notes Firmware Version 2.2.1

R&S DSA DOCSIS Signal Analyzer Release Notes Firmware Version 2.2.1 R&S DSA DOCSIS Signal Analyzer Release Notes Firmware Version 2.2.1 Rohde & Schwarz GmbH & Co. KG Muehldorfstr. 15, 81671 Munich, Germany Phone: +49 89 41 29-0 Fax: +49 89 41 29 12 164 E-mail: mailto:info@rohde-schwarz.com

More information

How to deal with the effects of CVE

How to deal with the effects of CVE How to deal with the effects of CVE-2018-0886 Restore Remote Access to R&S instruments V 2.10 Document date: 26.06.2018 This document describes possible ways to access R&S instruments after the security

More information

TopSec Mobile Tap-proof phone calls

TopSec Mobile Tap-proof phone calls TopSec Mobile Tap-proof phone calls iphone Android smartphone PC Fixed network Satellite Secure Communications Product Brochure 03.00 TopSec Mobile At a glance The TopSec Mobile is a mobile encryption

More information

R&S RTB2000 Oscilloscope Release Notes Firmware Version

R&S RTB2000 Oscilloscope Release Notes Firmware Version Oscilloscope Release Notes Firmware Version 02.202 These Release Notes describe the following models and options: R&S RTB2004 Oscilloscope, order no. 1333.1005K04 R&S RTB2002 Oscilloscope, order no. 1333.1005K02

More information

R&S NRP-Z27/-Z37 Power Sensor Module Release Notes Firmware Version 04.18a

R&S NRP-Z27/-Z37 Power Sensor Module Release Notes Firmware Version 04.18a R&S NRP-Z27/-Z37 Power Sensor Module Release Notes Firmware Version 04.18a 2010 Rohde & Schwarz GmbH & Co. KG 81671 Munich, Germany Printed in Germany Subject to change Data without tolerance limits is

More information

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

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

More information

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

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

More information

R&S CMW500 CDMA2000 1XRTT and 1xEV-DO Release Notes Software Version

R&S CMW500 CDMA2000 1XRTT and 1xEV-DO Release Notes Software Version R&S CMW500 CDMA2000 1XRTT and 1xEV-DO Release Notes Software Version 3.2.81 2014 Rohde & Schwarz GmbH & Co. KG Muehldorfstr. 15, 81671 Munich, Germany Phone: +49 89 41 29-0 Fax: +49 89 41 29 12-164 E-mail:

More information

Firmware Release V1.83 SP3

Firmware Release V1.83 SP3 Test and Measurement Division Release Notes for R&S ESL EMI Test Receivers with order number: 1300.5001.xx Release Note Revision: 7 Printed in the Federal Republic of Germany Contents History... 3 General

More information

R&S WinIQSIM2 Simulation Software Release Notes Firmware Version

R&S WinIQSIM2 Simulation Software Release Notes Firmware Version R&S WinIQSIM2 Simulation Software Release Notes Firmware Version 4.00.048.23 2017 Rohde & Schwarz GmbH & Co. KG Muehldorfstr. 15, 81671 Munich, Germany Phone: +49 89 41 29-0 Fax: +49 89 41 29 12 164 E-mail:

More information

Developing Microsoft.NET Applications for Windows (Visual Basic.NET)

Developing Microsoft.NET Applications for Windows (Visual Basic.NET) Developing Microsoft.NET Applications for Windows (Visual Basic.NET) Course Number: 2555 Length: 1 Day(s) Certification Exam This course will help you prepare for the following Microsoft Certified Professional

More information

PowerTSVP Switching Application Chassis TS-PWA3

PowerTSVP Switching Application Chassis TS-PWA3 Version 01.01 PowerTSVP Switching Application Chassis TS-PWA3 February 2007 Open test platform based on CAN bus Modular switching instrument chassis Standard 19 rackmount 4 HU enclosure 16 peripheral slots

More information

Release Notes. R&S FSC Spectrum Analyzer

Release Notes. R&S FSC Spectrum Analyzer Release Notes Revision: 02 R&S FSC Spectrum Analyzer Firmware Release 2.20 These Release Notes describe the following models and options of the R&S FSC Spectrum Analyzer: R&S Spectrum Analyzer FSC3, order

More information

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

Controlling the Agilent 34980A internal DMM using the IVI-C DMM Class Driver in cooperation with the Agilent 34980A IVI driver Controlling the Agilent 34980A internal DMM using the IVI-C DMM Class Driver in cooperation with the Agilent 34980A IVI driver Agilent Technologies, Inc. Alan Copeland Last revised June 23, 2009 Goal We

More information

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

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

More information

R&S LXI Class C Support V1.21 (XP)

R&S LXI Class C Support V1.21 (XP) Test and Measurement Division Release Notes for R&S LXI Class C Support V1.21 (XP) R&S FSP Spectrum Analyzers R&S FSU Spectrum Analyzers R&S FSG Signal Analyzers R&S FSQ Signal Analyzers Printed in the

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

R&S VSE Vector Signal Explorer Release Notes Firmware Version V1.40

R&S VSE Vector Signal Explorer Release Notes Firmware Version V1.40 R&S VSE Vector Signal Explorer Release Notes Firmware Version V1.40 These Release Notes are for following models of the R&S VSE Vector Signal Explorer: R&S VSE, order no. 1320.7500.06 2017 Rohde & Schwarz

More information

Sending s without the risk! Secure Communications with Rohde & Schwarz

Sending  s without the risk! Secure  Communications with Rohde & Schwarz Sending E-mails without the risk! Secure E-Mail Communications with Rohde & Schwarz Guide V1.1.10 Only the most recent version of this document is valid. Contents I List of figures... 2 1 Foreword... 3

More information

VISA, SICL, VISA COM,

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

More information

EMC Measurement Software EMC32

EMC Measurement Software EMC32 EMC Measurement Software EMC32 For use in development, for compliance and batch testing Flexible Modules for measuring electromagnetic interference (EMI) and electromagnetic susceptibility (EMS) Support

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

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

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

More information

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

R&S Browser in the Box Release Notes

R&S Browser in the Box Release Notes R&S Browser in the Box 2017-07-07 2017 Rohde & Schwarz GmbH & Co. KG Muehldorfstr. 15, 81671 Munich, Germany Phone: +49 89 41 29-0 Fax: +49 89 41 29 12-164 E-mail: mailto:info@rohde-schwarz.com Internet:

More information

Introduction to Programming Using Java (98-388)

Introduction to Programming Using Java (98-388) Introduction to Programming Using Java (98-388) Understand Java fundamentals Describe the use of main in a Java application Signature of main, why it is static; how to consume an instance of your own class;

More information

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

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

More information

R&S NRP-Z5 USB Sensor Hub Instrument Security Procedures

R&S NRP-Z5 USB Sensor Hub Instrument Security Procedures USB Sensor Hub Instrument Security Procedures (;Ü_Ã2) 1178.4753.02 01 Instrument Security Procedures Contents Contents 1 Overview... 2 2 Instrument Models Covered...2 3 Security Terms and Definitions...

More information

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

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

More information

C++\CLI. Jim Fawcett CSE687-OnLine Object Oriented Design Summer 2017

C++\CLI. Jim Fawcett CSE687-OnLine Object Oriented Design Summer 2017 C++\CLI Jim Fawcett CSE687-OnLine Object Oriented Design Summer 2017 Comparison of Object Models Standard C++ Object Model All objects share a rich memory model: Static, stack, and heap Rich object life-time

More information

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

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

More information

Single-Axis Motion Controller/Driver for DC or Stepper Motor. LabVIEW Driver Manual in NSTRUCT Environment. Version 1.0.x. For Motion, Think Newport

Single-Axis Motion Controller/Driver for DC or Stepper Motor. LabVIEW Driver Manual in NSTRUCT Environment. Version 1.0.x. For Motion, Think Newport Single-Axis Motion Controller/Driver for DC or Stepper Motor LabVIEW Driver Manual in NSTRUCT Environment Version 1.0.x For Motion, Think Newport Preface Confidentiality & Proprietary Rights Reservation

More information

Expert C++/CLI:.NET for Visual C++ Programmers

Expert C++/CLI:.NET for Visual C++ Programmers Expert C++/CLI:.NET for Visual C++ Programmers Marcus Heege Contents About the Author About the Technical Reviewer Acknowledgments xiii xv xvii CHAPTER 1 Why C++/CLI? 1 Extending C++ with.net Features

More information

R&S SITLine ETH Ethernet Encryptor Secure data transmission via landline, radio relay and satellite links up to 40 Gbit/s

R&S SITLine ETH Ethernet Encryptor Secure data transmission via landline, radio relay and satellite links up to 40 Gbit/s SITLine-ETH_bro_en_5214-0724-12_v1100.indd 1 Product Brochure 11.00 You act. We protect. Encryption and IT security by Rohde & Schwarz SIT. Secure Communications R&S SITLine ETH Ethernet Encryptor Secure

More information

QualiPoc Android Probe Non-stop service quality monitoring and optimization

QualiPoc Android Probe Non-stop service quality monitoring and optimization QualiPoc Android Probe Non-stop service quality monitoring and optimization Product Brochure Version 03.00 QualiPoc Android Probe Non-stop service quality monitoring and optimization QualiPoc Android Probe

More information

White Paper - How to call Polarion from DOT-NET

White Paper - How to call Polarion from DOT-NET Polarion Software Guide Working With Velocity Supporter White Paper - How to call Polarion from DOT-NET (rev. 4921) White Paper - How to call Polarion from DOT-NET Table of Contents Contents 1. Introduction...1

More information

COPYRIGHTED MATERIAL. Contents. Part I: C# Fundamentals 1. Chapter 1: The.NET Framework 3. Chapter 2: Getting Started with Visual Studio

COPYRIGHTED MATERIAL. Contents. Part I: C# Fundamentals 1. Chapter 1: The.NET Framework 3. Chapter 2: Getting Started with Visual Studio Introduction XXV Part I: C# Fundamentals 1 Chapter 1: The.NET Framework 3 What s the.net Framework? 3 Common Language Runtime 3.NET Framework Class Library 4 Assemblies and the Microsoft Intermediate Language

More information

NISTread For R&S ZVA/B/T or R&S ZNB/C Quick Start Guide

NISTread For R&S ZVA/B/T or R&S ZNB/C Quick Start Guide NISTread For R&S ZVA/B/T or R&S ZNB/C Quick Start Guide Quick Start Guide Test and Measurement 1175.6584.02 01 The Quick Start Guide describes the usage of the NIST read software with the following R&S

More information

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

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

More information

R&S InstrumentView Spectrum Analyzer Software Manual

R&S InstrumentView Spectrum Analyzer Software Manual R&S InstrumentView Spectrum Analyzer Software Manual (=E:X2) Software Manual 1321.1040.02 04.00 The software manual describes the following: R&S InstrumentView The R&S InstrumentView supports the following

More information

Getting Started with IVI Drivers

Getting Started with IVI Drivers Getting Started with IVI Drivers Guide to Using IVI.Net Drivers with Visual C# and Visual Basic.NET Version 1.0 Draft Aug 3, 2016 Copyright IVI Foundation, 2016 All rights reserved The IVI Foundation has

More information

NI Introduction CALIBRATION PROCEDURE. What Is Calibration? External Calibration

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

More information

Using the TekScope IVI-COM Driver from C#.NET

Using the TekScope IVI-COM Driver from C#.NET Using the TekScope IVI-COM Driver from C#.NET Introduction This document describes the step-by-step procedure for using the TekScope IVI- COM driver from a.net environment using C#. Microsoft.Net supports

More information

Command Line Interface (CLI)

Command Line Interface (CLI) Command Line Interface (CLI) EION CLI is a portable and industry-familiar-user interface for configuration, administration and management for Open IP Environment. Overview EION Open IP Environment is a

More information

R&S ZN-Z154 Calibration Unit Instrument Security Procedures

R&S ZN-Z154 Calibration Unit Instrument Security Procedures Calibration Unit Instrument Security Procedures (;ÜQ;2) 1178.3311.02 02 Instrument Security Procedures Contents Contents 1 Overview... 2 2 Instrument Models Covered...2 3 Security Terms and Definitions...

More information

Learning to Program in Visual Basic 2005 Table of Contents

Learning to Program in Visual Basic 2005 Table of Contents Table of Contents INTRODUCTION...INTRO-1 Prerequisites...INTRO-2 Installing the Practice Files...INTRO-3 Software Requirements...INTRO-3 Installation...INTRO-3 Demonstration Applications...INTRO-3 About

More information

R&S InstrumentView Software Manual

R&S InstrumentView Software Manual R&S InstrumentView Software Manual (=E:X2) Version 06.00 1321104002 The software manual describes the following: R&S InstrumentView The R&S InstrumentView supports the following product series: R&S FPH

More information

R&S GP-U gateprotect Firewall How-to

R&S GP-U gateprotect Firewall How-to gateprotect Firewall How-to Configuring NAT rules using NETMAP (T^Wæ2) 3646.3988.02 01 Cybersecurity How-to 2017 Rohde & Schwarz Cybersecurity GmbH Muehldorfstr. 15, 81671 Munich, Germany Phone: +49 (0)

More information

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

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

More information

R&S InstrumentView Software Manual

R&S InstrumentView Software Manual R&S InstrumentView Software Manual (=E:X2) Version 07.00 1321104002 The software manual describes the following: The supports the following product series: R&S FPH R&S ZPH R&S FPC R&S FSH4 R&S ZVH R&S

More information