/// <summary>
 ///     <inheritdoc />
 /// </summary>
 public void SetPulseModulationInternalSource(PulseModulationSource pulseModulationSource)
 {
     try
     {
         ScpiDataExchanger.Request(":PULM:SOUR " + pulseModulationSource + ";");
     }
     catch (Exception exception)
     {
         throw new SignalGeneratorException(exception.Message);
     }
 }
Beispiel #2
0
 /// <summary>
 ///     <inheritdoc />
 /// </summary>
 public void SetPulseModulationInternalSource(PulseModulationSource pulseModulationSource)
 {
     try
     {
         E8257D.SetPulseModulationInternalSource(pulseModulationSource);
     }
     catch (Exception exception)
     {
         throw new SignalGeneratorException(exception.Message);
     }
 }