//TODO: FIX TEST Несовпадение типов
 /// <summary>
 ///     <inheritdoc />
 /// </summary>
 public void SetPulseModulationInternal(PulseModulationInternal type)
 {
     try
     {
         ScpiDataExchanger.Request(":PULM:SOUR:INT " + type + ";");
     }
     catch (Exception exception)
     {
         throw new SignalGeneratorException(exception.Message);
     }
 }
Example #2
0
 /// <summary>
 ///     <inheritdoc />
 /// </summary>
 public void SetPulseModulationInternal(PulseModulationInternal type)
 {
     try
     {
         E8257D.SetPulseModulationInternal(type);
     }
     catch (Exception exception)
     {
         throw new SignalGeneratorException(exception.Message);
     }
 }