From e8245379f6eeb986fcc56c81e468e312e3e4013c Mon Sep 17 00:00:00 2001 From: "GukSang.Jin" Date: Sat, 11 Apr 2026 19:18:16 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cardiopulmonarybypasssystems/Services/ModbusTelemetryService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cardiopulmonarybypasssystems/Services/ModbusTelemetryService.cs b/Cardiopulmonarybypasssystems/Services/ModbusTelemetryService.cs index 1bdf852..2eb6ad9 100644 --- a/Cardiopulmonarybypasssystems/Services/ModbusTelemetryService.cs +++ b/Cardiopulmonarybypasssystems/Services/ModbusTelemetryService.cs @@ -778,7 +778,7 @@ public sealed class ModbusTelemetryService : IModbusTelemetryService, IDisposabl !float.IsNaN(value) && !float.IsInfinity(value) && value is > -1000f and < 1000f; private static bool ShouldClampChannelValue(string channelName) => - channelName is not "近端压力" and not "远端压力"; + channelName is not "近端压力" and not "远端压力"; private DeviceChannel Channel(string name) => _channels.First(channel => channel.Name == name); }