diff --git a/XP.Hardware.Detector/Implementations/SimulatedDetector.cs b/XP.Hardware.Detector/Implementations/SimulatedDetector.cs index 3c27c52..f9c343a 100644 --- a/XP.Hardware.Detector/Implementations/SimulatedDetector.cs +++ b/XP.Hardware.Detector/Implementations/SimulatedDetector.cs @@ -84,6 +84,9 @@ namespace XP.Hardware.Detector.Implementations protected override Task BadPixelCorrectionInternalAsync(CancellationToken cancellationToken) => Task.FromResult(DetectorResult.Success("模拟坏像素校正完成")); + protected override Task ApplyParametersInternalAsync(int binningIndex, int pga, decimal frameRate, CancellationToken cancellationToken) + => Task.FromResult(DetectorResult.Success("模拟参数应用完成")); + public override DetectorInfo GetInfo() => new DetectorInfo { Type = DetectorType.Simulated,