private static extern int ps3000_set_siggen(
     short handle,
     SiggenWaveType waveType,
     int startFreq,
     int stopFreq,
     float increment,
     short dwellTime,
     bool repeat,
     bool dualSlope);
Beispiel #2
0
 public static extern short SetSiggenBuiltIn(
     short handle,
     int offsetVoltage,
     uint pkToPk,
     SiggenWaveType siggenWaveType,
     float startFrequency,
     float stopFrequency,
     float increment,
     float dwellTime,
     SiggenSweepType sweepType,
     bool whiteNoise,
     uint shots,
     uint sweeps,
     SiggenTrigType triggerType,
     SiggenTrigSource triggerSource,
     short extInThreshold);
 public int SetSiggen(SiggenWaveType waveType, int startFreq, int stopFreq, float increment, short dwellTime, bool repeat, bool dualSlope)
 {
     CheckOpened();
     return(ps3000_set_siggen(_handle, waveType, startFreq, stopFreq, increment, dwellTime, repeat, dualSlope));
 }