|
@@ -1169,6 +1169,7 @@ namespace MECF.Framework.Common.Device.ResistivityProbe
|
|
|
byte[] response=new byte[length];
|
|
|
DateTime dt = DateTime.Now;
|
|
|
int count = 0;
|
|
|
+ bool hasReceivedData = false; // 新增标志,用于记录是否接收到数据
|
|
|
while (true)
|
|
|
{
|
|
|
int bytLength = _serialPort.BytesToRead;
|
|
@@ -1180,6 +1181,7 @@ namespace MECF.Framework.Common.Device.ResistivityProbe
|
|
|
if (bytLength + count >= length)
|
|
|
{
|
|
|
Array.Copy(bytes, 0, response, count, length-count);
|
|
|
+ hasReceivedData = true;
|
|
|
break;
|
|
|
}
|
|
|
else
|
|
@@ -1195,12 +1197,9 @@ namespace MECF.Framework.Common.Device.ResistivityProbe
|
|
|
WriteErrorMsg(err,false);
|
|
|
return null;
|
|
|
}
|
|
|
- else
|
|
|
- {
|
|
|
- TemperatureConfigManager.Instance.UpdataTCPowerConnectDic(_name + '-' + id.ToString(),true);
|
|
|
- }
|
|
|
Thread.Sleep(2);
|
|
|
}
|
|
|
+ TemperatureConfigManager.Instance.UpdataTCPowerConnectDic(_name + '-' + id.ToString(), hasReceivedData);
|
|
|
WriteInfoMsg(0, response);
|
|
|
return response;
|
|
|
}
|