RsCMPX_Base 5.0.60.27

dotnet add package RsCMPX_Base --version 5.0.60.27
NuGet\Install-Package RsCMPX_Base -Version 5.0.60.27
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="RsCMPX_Base" Version="5.0.60.27" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RsCMPX_Base --version 5.0.60.27
#r "nuget: RsCMPX_Base, 5.0.60.27"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install RsCMPX_Base as a Cake Addin
#addin nuget:?package=RsCMPX_Base&version=5.0.60.27

// Install RsCMPX_Base as a Cake Tool
#tool nuget:?package=RsCMPX_Base&version=5.0.60.27

Description

Native C# CMX/CMP/PVT Base System driver, that fully follow the SCPI-tree structure of an instrument. For example, the SCPI command: SYSTem:REFerence:FREQuency:SOURce is represented as: RsCMPX_Base.System.Reference.Frequency.Source

Supported instruments: CMX500, CMP200, CMP180, PVT360

The package is hosted here: https://www.nuget.org/packages/RsCMPX_Base/

Examples: https://github.com/Rohde-Schwarz/Examples/

Basic Hello-World code:
using RohdeSchwarz.RsCMPX_Base;

namespace RsCMPX_Base_HelloWorld_Example
{
  class Program
  {
    static void Main(string[] args)
    {
      var instr = new RsCMPX_Base("TCPIP::192.168.1.102::hislip0");
      idn = instr.Utilities.QueryString("*IDN?");
      Console.WriteLine("Hello, I am: " + idn);
    }
  }
}

Preconditions

Supported Frameworks

  • .NET Core 3.1
  • .NET Standard 2.0
  • .NET Standard 2.1
  • .NET Framework 4.5
  • .NET Framework 4.8

Installation

Installation of the packages (e.g. for a new project):

Option 1 - Online installation from https://www.nuget.org:

  • In your Visual Studio go to the top menu Tools -> NuGet Packet Manager -> Manage NuGet Packages for Solution....
  • At the top right, Package source select nuget.org.
  • At the top left, select the tab Browse , in the search box enter RsCMPX_Base. Select the found item.
  • On the right side, check the project(s) in which you want to reference the package, and hit Install button.

Option 2 - offline installation:

  • The easiest way is to set up a local repository (a simple folder) for NuGet Packages.
  • Create a folder and copy all the *.nupkg files there.
  • In your Visual Studio go to the top menu Tools -> NuGet Packet Manager -> Manage NuGet Packages for Solution....
  • At the top right, near the Package source control, click on the cog wheel icon.
  • Press plus icon. Give your new repository a name e.g.: Local and for the Source navigate to your created folder.
  • After that, change the Package source to your Local.
  • At the top left, select the tab Browse.
  • Select the desired package and install it to the project(s) you want.

Usage

After installing the NuGet package, it adds the RsCMPX_Base.dll reference to your project. Use the intellisense to navigate the package's API, or find the examples here:
https://github.com/Rohde-Schwarz/Examples/

Plain SCPI

If you wish to use the plain SCPI commands, the driver offers Utility Interface: RsCMPX_Base.Utilities.WriteString()
RsCMPX_Base.Utilities.QueryString()
RsCMPX_Base.Utilities.QueryBoolean()
RsCMPX_Base.Utilities.QueryInteger()
RsCMPX_Base.Utilities.QueryFloat()
RsCMPX_Base.Utilities.Binary.QueryData()
...and many more

The Utilities interface is also available as a separate modul:
NuGet package RsInstrument: https://www.nuget.org/packages?q=RsInstrument

Release Notes

Latest release notes summary: Updated for Base FW 5.0.60

Version 5.0.60

  • Updated for Base FW 5.0.60, MMI SW 7.70

Version 4.0.180

  • Added MMI Commands

Version 4.0.170

  • Update for FW 4.0.170
  • Fixed conversion of List{bool} to string (Core 1.24.1.69)

Version 4.0.140

  • Update of RsCMPX_Base to FW 4.0.140 from the complete FW package 7.10.0

Version 4.0.40

  • Update of RsCMPX_Base to version 4.0.40

Version 4.0.12

  • Release for FW version 4.0.12

Version 4.0.7

  • Fixed several misspelled arguments and command headers

Version 4.0.xx4

  • Added new subsystems NrFr2Meas, UwbMeas, Signaling

Version 4.0.xx3

  • Fixed intellisense texts
  • NuGet Packages are now signed with R&S Certificate
  • For SCPI commands that accept/return not only integer/float values, but also ON/OFF, the behaviour is:
    • integer int.MinValue+1 represents 'OFF' string instead of a number
    • integer int.MinValue+2 represents 'ON' string instead of a number
    • double -double.Epsilon represents 'OFF' string instead of a number
    • double -double.Epsilon*2 represents 'ON' string instead of a number

Version 4.0.xx2

  • New prefixes
  • Added NrFr1Meas
  • New CMPX NuGet Icons

Version 4.0.xx1

  • First released version
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 is compatible.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETCoreApp 3.1

    • No dependencies.
  • .NETFramework 4.5

    • No dependencies.
  • .NETFramework 4.8

    • No dependencies.
  • .NETStandard 2.0

    • No dependencies.
  • .NETStandard 2.1

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
5.0.60.27 78 4/18/2024
4.0.180.26 458 9/29/2023
4.0.170.24 587 7/4/2023
4.0.140.23 724 12/22/2022
4.0.40.19 733 11/10/2021
4.0.7.17 840 5/16/2021
4.0.7.12 746 11/26/2020
4.0.7.11 819 11/16/2020

Updated for Base FW 5.0.60