Scope.AutoScaleDisplay();
Sleep(3000);
Scope.ActiveChannels = CH2;
Scope.SampleCount = 5000;
Scope.SamplingDuration = 0.1f;
Scope.Single();
Sleep(1000);
Scope.AutoScaleDisplay();
Sleep(3000);
Scope.ActiveChannels = CHBOTH;
Scope.SampleCount = 100000;
Scope.SamplingDuration = 1f;
Scope.Single();
Sleep(1000);
Scope.AutoScaleDisplay();
Sleep(3000);
// analog data logger
Debug(„Analog data logger“);
Scope.ActiveChannels = CH1;
Scope.SampleCount = 100000;
Scope.SamplingDuration = 10.0f;
Scope.SamplingMode = DATALOGGER;
Scope.Single();
Sleep(1000);
Scope.AutoScaleDisplay();
Sleep(11000);
// digital Logic-Analyzer
Debug(„Digital Logic-Analyzer“);
Scope.SamplingMode = OSZILLOSCOPE;
Scope.ActiveChannels = DIGITALIO;
Scope.SampleCount = 1000;
Scope.SamplingDuration = 0.1f;
Scope.Run();