Commit b331ea60 authored by leon.huang's avatar leon.huang

version1.6.9 第一次 release。修改画图界面停止的问题

parent 5659e826
......@@ -42,7 +42,7 @@ namespace GcDevicePc
this.fid1ver.Text = this.FID1version;
this.fid2ver.Text = this.FID2version;
this.tcdver.Text = this.TCD1version;
this.PCver.Text = this.Hmiversion + "/1.6.8";
this.PCver.Text = this.Hmiversion + "/1.6.9";
}
}
}
......@@ -314,6 +314,8 @@ namespace GcDevicePc.Common
#region 功能函数
private UInt32[] Beforetime = new UInt32[30];
private UInt32[] OverTimes = new UInt32[30];
public void Get_Channel_Data()
{
UInt16[] dest = new UInt16[channel_num];
......@@ -345,11 +347,23 @@ namespace GcDevicePc.Common
for (int i = 0; i < channel_num / 4; i++)
{
tmp = timev[i];
if (Beforetime[i] > tmp && (Beforetime[i]- tmp) > 0xfffff000)
{
OverTimes[i] ++;
}
Beforetime[i] = tmp;
if(tmp < 0x000F0000 && fDetMax_Time > 0xFFFFF000)
{
fDetMax_Time = 0;
}
if (tmp > fDetMax_Time)
{
fDetMax_Time = tmp;
globaldata.m_signalbuffer.Channel1_Port.ctimer = tmp;
//globaldata.m_signalbuffer.Channel1_Port.ctimer = tmp;
globaldata.m_signalbuffer.Channel1_Port.ctimer = tmp + (ulong)(0x100000000 * OverTimes[i]);
globaldata.m_signalbuffer.Channel1_Port.cdata = fidv[i];
globaldata.m_dpbuffer.ShowList.showDet.fDetValue = fidv[i] * 1000.0f;
......
......@@ -264,13 +264,13 @@
this.label15.Location = new System.Drawing.Point(261, 208);
this.label15.Name = "label15";
this.label15.Size = new System.Drawing.Size(41, 12);
this.label13.AutoSize = true;
this.label13.Location = new System.Drawing.Point(261, 180);
this.label15.TabIndex = 0;
this.label15.Text = "ml/min";
//
// label13
//
this.label13.AutoSize = true;
this.label13.Location = new System.Drawing.Point(261, 180);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(41, 12);
this.label13.TabIndex = 0;
......
......@@ -1878,6 +1878,11 @@ namespace GcDevicePc
this.datalist.Items.Add(tempshow);
}
tempshow = new ListViewItem();
tempshow.Text = GettempName("尾吹流量(mL/min)");
tempshow.SubItems.Add(GetValue(globaldata.m_dpbuffer.ShowList.showepc.EPC1_1_Cur) + "/" +
GetSetValue(globaldata.m_dpbuffer.ShowList.showepc.EPC1_1_Set));
this.datalist.Items.Add(tempshow);
tempshow = new ListViewItem();
tempshow.Text = "点火状态";
......
......@@ -10,7 +10,7 @@ namespace GcDevicePc.GCBuffer
{
public struct Channel_XY
{
public UInt32 ctimer;
public UInt64 ctimer;
public float cdata;
};
......
......@@ -688,7 +688,7 @@ namespace GcDevicePc
/// 1.0.2.3 添加了周期完成后,重新绘图功能
private void timer1_Tick(object sender, EventArgs e)
{
this.Text = String.Format("{0}-1.6.8 {1}", globaldata.AppName,Formstr);
this.Text = String.Format("{0}-1.6.9 {1}", globaldata.AppName,Formstr);
HmiStatus.Text = String.Format("状态:{0}", statestr);
......
......@@ -32,7 +32,7 @@ namespace GcDevicePc.ProThread
List<double[]> listRawTem = new List<double[]>();//原始数据缓存
bool drbool = false;
uint NowTimeOld = 0;//上一周期开始
UInt32 starttimer = 0x7FFFFFFF;
UInt64 starttimer = 0x7FFFFFFF;
while (!datamre.WaitOne(500))
{
......
......@@ -33,7 +33,7 @@ namespace GcDevicePc.ProThread
List<double[]> listRawTem = new List<double[]>();//原始数据缓存
bool drbool = false;
uint NowTimeOld = 0;//上一周期开始
UInt32 starttimer = 0x7FFFFFFF;
UInt64 starttimer = 0x7FFFFFFF;
while (!datamre.WaitOne(500))
{
......
......@@ -103,12 +103,12 @@ namespace GcDevicePc.ProThread
{
double value = 0;
float dvalue = 0.0f;
UInt32 starttimer = 0x7FFFFFFF;
UInt64 starttimer = 0x7FFFFFFF;
UInt32 endtimer = 0x7FFFFFFF;
Boolean saveflag = false;
List<float> listPoint = new List<float>();//临时数据区
List<float> savePoint = new List<float>();
List<uint> timePoint = new List<uint>();//临时数据区
List<UInt64> timePoint = new List<UInt64>();//临时数据区
try
{
......
......@@ -31,12 +31,12 @@ namespace GcDevicePc.ProThread
{
double value = 0;
float dvalue = 0.0f;
UInt32 starttimer = 0x7FFFFFFF;
UInt64 starttimer = 0x7FFFFFFF;
UInt32 endtimer = 0x7FFFFFFF;
Boolean saveflag = false;
List<float> listPoint = new List<float>();//临时数据区
List<float> savePoint = new List<float>();
List<uint> timePoint = new List<uint>();//临时数据区
List<UInt64> timePoint = new List<UInt64>();//临时数据区
try
{
......
......@@ -29,12 +29,12 @@ namespace GcDevicePc.ProThread
{
double value = 0;
float dvalue = 0.0f;
UInt32 starttimer = 0x7FFFFFFF;
UInt64 starttimer = 0x7FFFFFFF;
UInt32 endtimer = 0x7FFFFFFF;
Boolean saveflag = false;
List<float> listPoint = new List<float>();//临时数据区
List<float> savePoint = new List<float>();
List<uint> timePoint = new List<uint>();//临时数据区
List<UInt64> timePoint = new List<UInt64>();//临时数据区
try
{
......
......@@ -176,11 +176,14 @@ namespace GcDevicePc.ProThread
}
#region 三通道数据获取
private UInt32[] Beforetime1 = new UInt32[30];
private UInt32[] OverTimes1 = new UInt32[30];
/// <summary>
/// 获取通道数据
/// </summary>
/// <param name="address"></param>
/// <param name="num"></param>
///
private void Get_Channel_Data(ushort address, ushort num)
{
int ret;
......@@ -217,14 +220,22 @@ namespace GcDevicePc.ProThread
for (int i = 0; i < num / 4; i++)
{
tmp = timev[i];
if (Beforetime1[i] > tmp && (Beforetime1[i]- tmp) > 0xfffff000)
{
OverTimes1[i] ++;
}
Beforetime1[i] = tmp;
if(tmp < 0x000F0000 && fDetMax_Time > 0xFFFFF000)
{
fDetMax_Time = 0;
}
if (tmp > fDetMax_Time)
{
fDetMax_Time = tmp;
globaldata.m_signalbuffer.Channel1_Port.ctimer = tmp;
//globaldata.m_signalbuffer.Channel1_Port.ctimer = tmp;
globaldata.m_signalbuffer.Channel1_Port.ctimer = tmp + (ulong)(0x100000000 * OverTimes1[i]);
globaldata.m_signalbuffer.Channel1_Port.cdata = fidv[i];
globaldata.m_dpbuffer.ShowList.showDet.fDetValue = fidv[i] * 1000.0f;
#if (data)
......@@ -264,7 +275,8 @@ namespace GcDevicePc.ProThread
}
}
}
private UInt32[] Beforetime2 = new UInt32[30];
private UInt32[] OverTimes2 = new UInt32[30];
private void Get_Channel2_Data(ushort address, ushort num)
{
UInt32 tmp;
......@@ -299,11 +311,21 @@ namespace GcDevicePc.ProThread
for (int i = 0; i < num / 4; i++)
{
tmp = timev[i];
if (Beforetime2[i] > tmp && (Beforetime2[i]- tmp) > 0xfffff000)
{
OverTimes2[i] ++;
}
Beforetime2[i] = tmp;
if(tmp < 0x000F0000 && iDetMax_Time > 0xFFFFF000)
{
iDetMax_Time = 0;
}
if (tmp > iDetMax_Time)
{
iDetMax_Time = tmp;
globaldata.m_signalbuffer.Channel2_Port.ctimer = tmp;
//globaldata.m_signalbuffer.Channel2_Port.ctimer = tmp;
globaldata.m_signalbuffer.Channel2_Port.ctimer = tmp + (ulong)(0x100000000 * OverTimes2[i]);
globaldata.m_signalbuffer.Channel2_Port.cdata = fidv[i];
globaldata.m_dpbuffer.ShowList.showDet.iDetValue = fidv[i] * 1000.0f;
......@@ -341,7 +363,8 @@ namespace GcDevicePc.ProThread
}
}
private UInt32[] Beforetime3 = new UInt32[30];
private UInt32[] OverTimes3 = new UInt32[30];
private void Get_Channel3_Data(ushort address, ushort num)
{
UInt32 tmp;
......@@ -376,11 +399,21 @@ namespace GcDevicePc.ProThread
for (int i = 0; i < num / 4; i++)
{
tmp = timev[i];
if (Beforetime3[i] > tmp && (Beforetime3[i]- tmp) > 0xfffff000)
{
OverTimes3[i] ++;
}
Beforetime3[i] = tmp;
if(tmp < 0x000F0000 && bDetMax_Time > 0xFFFFF000)
{
bDetMax_Time = 0;
}
if (tmp > bDetMax_Time)
{
bDetMax_Time = tmp;
globaldata.m_signalbuffer.Channel3_Port.ctimer = tmp;
// globaldata.m_signalbuffer.Channel3_Port.ctimer = tmp;
globaldata.m_signalbuffer.Channel3_Port.ctimer = tmp + (ulong)(0x100000000 * OverTimes3[i]);
globaldata.m_signalbuffer.Channel3_Port.cdata = fidv[i];
globaldata.m_dpbuffer.ShowList.showDet.bDetValue = fidv[i] * 1000.0f;
globaldata.m_signalbuffer.Draw_Port3.Add(globaldata.m_signalbuffer.Channel3_Port);
......
......@@ -263,7 +263,6 @@ namespace GcDevicePc
e.Cancel = true;
break;
}
_initSec++;
string tail = "";
for (int i = 0; i < (_initSec % 4); i++)
......
......@@ -51,7 +51,7 @@ namespace GcDevicePc
{
if(adapter.Name == this.label5.Text)//if (adapter.Name == Meshport || string.IsNullOrEmpty(Meshport))
{
bool Pd1 = (adapter.NetworkInterfaceType == NetworkInterfaceType.Ethernet); //判断是否是以太网连接
bool Pd1 = (adapter.NetworkInterfaceType == NetworkInterfaceType.Ethernet || adapter.NetworkInterfaceType == NetworkInterfaceType.Wireless80211); //判断是否是以太网连接
if (Pd1)
{
{
......
......@@ -141,7 +141,7 @@ namespace GcDevicePc
//public static UInt32 starttimer = 0x7FFFFFFF; //开始时间
//public static bool startimerIsSet = false;
// public static int savetimer; //开始时间
public static UInt32 starttimer = 0x7FFFFFFF; //开始时间
public static UInt64 starttimer = 0x7FFFFFFF; //开始时间
public static bool startimerIsSet = false;
public static bool startimerIsSet1 = false;
public static bool startimerIsSet2 = false;
......
Binary files "a/VocsSetup/GC_Config/GC_Set/\344\273\252\345\231\250\346\226\271\346\263\225/VOC/SingleAnal.ini" and /dev/null differ
Binary files "a/VocsSetup/GC_Config/GC_Set/\344\273\252\345\231\250\346\226\271\346\263\225/tvoc/1.ini" and /dev/null differ
Binary files "a/VocsSetup/GC_Config/GC_Set/\344\273\252\345\231\250\346\226\271\346\263\225/tvoc/3.ini" and /dev/null differ
Binary files "a/VocsSetup/GC_Config/GC_Set/\344\273\252\345\231\250\346\226\271\346\263\225/voc/20200420.ini" and /dev/null differ
Binary files "a/VocsSetup/GC_Config/GC_Set/\344\273\252\345\231\250\346\226\271\346\263\225/voc/20200424.ini" and /dev/null differ
[NetWorkConfig]
MAC地址=F8:02:78:60:70:A0
MAC地址=F8:02:78:60:70:9E
网口=本地连接
搜索时间=10
搜索时间=20
[StartUp]
自启动=0
打开系统=0
......@@ -17,13 +17,13 @@ InfoLog=0
ErrLog=0
HmiLog=0
[Version]
VersionType=1
VersionType=0
AppName=
[User]
Name=admin
Password=0
[SendData]
Thirdparty=1
Thirdparty=0
Foreign=2
[SaveData]
ZBSaveData=1
......@@ -2500,6 +2500,7 @@
</summary>
<param name="address"></param>
<param name="num"></param>
</member>
<member name="M:GcDevicePc.ProThread.GcDataTh.GetCState(System.UInt16,System.UInt16,System.Byte[]@)">
<summary>
......
2020-04-29 08:22:05System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:22:05System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:22:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:22:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:22:17System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:22:17System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:22:23System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:22:23System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:22:29System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:22:29System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:22:35System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:22:35System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:22:41System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:22:41System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:22:47System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:22:47System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:22:53System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:22:53System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:22:59System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:22:59System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:23:05System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:23:05System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:23:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:23:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:23:17System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:23:17System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:23:23System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:23:23System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:23:29System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:23:29System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:23:35System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-29 08:23:35System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
【2020-04-29 08:23:37】System.InvalidOperationException: 未在侦听。调用此方法前必须先调用 Start() 方法。
在 System.Net.Sockets.TcpListener.Pending()
在 ModbusLib.TcpService.Accept() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\gcdevicepc_nmoc8-16\ModbusLib\TcpService.cs:行号 111
2020-05-28 10:38:42System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:38:48System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:38:54System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:39:00System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:39:06System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:39:12System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:39:18System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:39:24System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:39:30System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:39:36System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:39:42System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:39:48System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:39:54System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:40:00System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:40:06System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:40:12System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:40:18System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:40:24System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:40:30System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:40:36System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:40:42System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:40:48System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:40:54System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:41:00System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:41:06System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:41:12System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:41:18System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:41:24System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:41:30System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:41:36System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:41:42System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:41:48System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:41:54System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:42:00System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:42:06System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:42:12System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:42:18System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:42:24System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:42:30System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:42:36System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:42:42System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:42:48System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:42:54System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:43:00System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
2020-05-28 10:43:06System.NullReferenceException: 未将对象引用设置到对象的实例。
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 577
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -376,3 +376,170 @@
【2020-04-28 15:15:48.4237】,用户admin,进入调试模式
【2020-04-29 04:26:26.4403】,进入自动销户
【2020-04-29 08:23:37.5709】,服务器重启:
【2020-05-06 10:42:20.0850】,服务器开始启动:192.168.1.27:12345
【2020-05-06 10:42:30.7335】,用户admin,进入调试模式
【2020-05-06 10:48:48.0065】,服务器重启:
【2020-05-06 10:52:36.9207】,服务器开始启动:192.168.1.27:12345
【2020-05-06 16:03:25.6170】,服务器开始启动:192.168.1.27:12345
【2020-05-06 16:07:18.6831】,服务器开始启动:192.168.1.27:12345
【2020-05-06 18:20:50.3847】,服务器重启:
【2020-05-07 10:12:50.9438】,服务器开始启动:192.168.1.27:12345
【2020-05-07 15:33:01.8364】,用户admin,进入调试模式
【2020-05-07 15:34:45.4410】,服务器重启:
【2020-05-07 15:36:12.7636】,服务器开始启动:192.168.1.27:12345
【2020-05-07 15:46:53.8593】,服务器重启:
【2020-05-07 15:48:33.3633】,服务器开始启动:192.168.1.27:12345
【2020-05-07 15:54:43.6536】,服务器重启:
【2020-05-07 15:56:26.6508】,服务器开始启动:192.168.1.27:12345
【2020-05-07 17:05:21.3920】,用户admin,进入调试模式
【2020-05-07 17:06:14.5081】,服务器重启:
【2020-05-07 17:07:11.6792】,服务器开始启动:192.168.1.27:12345
【2020-05-07 18:22:49.6969】,服务器重启:
【2020-05-11 10:03:48.9615】,服务器开始启动:192.168.1.27:12345
【2020-05-11 10:05:53.0204】,服务器开始启动:192.168.1.27:12345
【2020-05-11 17:56:00.5068】,服务器重启:
【2020-05-12 08:58:44.7551】,服务器开始启动:192.168.1.27:12345
【2020-05-12 08:59:54.4341】,服务器重启:
【2020-05-12 09:19:11.0371】,服务器开始启动:192.168.1.27:12345
【2020-05-12 10:06:39.7243】,服务器开始启动:192.168.1.27:12345
【2020-05-12 10:24:48.2157】,服务器开始启动:192.168.1.27:12345
【2020-05-13 17:56:08.5177】,服务器开始启动:192.168.1.123:12345
【2020-05-13 17:58:12.5384】,服务器重启:
【2020-05-14 09:44:29.8369】,服务器开始启动:192.168.1.4:12345
【2020-05-14 09:46:13.9277】,用户admin,进入调试模式
【2020-05-14 09:49:41.1672】,服务器重启:
【2020-05-14 09:51:11.2933】,服务器开始启动:192.168.1.4:12345
【2020-05-14 10:01:25.2436】,服务器重启:
【2020-05-14 10:02:27.9730】,服务器开始启动:192.168.1.4:12345
【2020-05-14 10:09:08.9051】,服务器开始启动:192.168.1.4:12345
【2020-05-14 10:13:40.3108】,服务器重启:
【2020-05-14 10:14:21.2394】,服务器开始启动:192.168.1.4:12345
【2020-05-14 10:33:33.1271】,服务器重启:
【2020-05-14 10:36:40.1132】,服务器开始启动:192.168.1.4:12345
【2020-05-14 10:36:53.6411】,服务器重启:
【2020-05-14 10:48:27.1551】,服务器开始启动:192.168.1.4:12345
【2020-05-14 10:56:11.8914】,服务器重启:
【2020-05-14 11:01:03.4240】,服务器开始启动:192.168.1.4:12345
【2020-05-14 12:15:53.8233】,服务器重启:
【2020-05-14 12:16:30.8463】,服务器开始启动:192.168.1.4:12345
【2020-05-14 12:16:35.3672】,服务器重启:
【2020-05-14 13:15:37.3385】,服务器开始启动:192.168.1.4:12345
【2020-05-14 13:38:43.6775】,服务器重启:
【2020-05-14 16:23:45.7082】,服务器开始启动:192.168.1.4:12345
【2020-05-14 16:24:20.8488】,67836
【2020-05-14 16:24:20.8648】,67836
【2020-05-14 16:24:21.3415】,67836
【2020-05-14 16:25:43.1209】,服务器重启:
【2020-05-14 18:19:08.6474】,服务器开始启动:192.168.1.111:12345
【2020-05-14 18:21:01.3691】,服务器开始启动:192.168.1.111:12345
【2020-05-14 18:21:41.9107】,服务器重启:
【2020-05-14 18:25:56.1275】,服务器开始启动:192.168.1.27:12345
【2020-05-14 18:28:58.9691】,服务器重启:
【2020-05-25 08:47:25.7666】,服务器开始启动:192.168.1.111:12345
【2020-05-25 08:47:41.4527】,用户admin,进入调试模式
【2020-05-25 08:49:21.9677】,服务器重启:
【2020-05-25 08:50:01.0521】,服务器开始启动:192.168.1.111:12345
【2020-05-25 08:50:24.4156】,用户admin,进入调试模式
【2020-05-25 08:52:08.6562】,服务器重启:
【2020-05-25 08:52:44.7497】,服务器开始启动:192.168.1.111:12345
【2020-05-25 08:52:56.5261】,用户admin,进入调试模式
【2020-05-25 09:18:51.3055】,服务器重启:
【2020-05-25 12:09:42.3369】,服务器开始启动:192.168.1.111:12345
【2020-05-25 12:48:25.6383】,服务器开始启动:192.168.1.111:12345
【2020-05-25 12:56:24.3917】,服务器开始启动:192.168.1.111:12345
【2020-05-25 13:53:40.6499】,服务器开始启动:192.168.1.111:12345
【2020-05-26 16:29:59.6356】,服务器开始启动:192.168.1.111:12345
【2020-05-26 16:31:03.0290】,5059401
【2020-05-26 16:33:03.3012】,A开始保存数据
【2020-05-26 16:33:03.3171】,True
【2020-05-26 16:33:03.3411】,A保存
【2020-05-26 16:33:03.3840】,True
【2020-05-26 16:33:08.7097】,5185750
【2020-05-26 16:33:17.0813】,服务器重启:
【2020-05-27 11:01:02.1893】,服务器开始启动:192.168.1.111:12345
【2020-05-27 11:10:45.6679】,服务器开始启动:192.168.1.111:12345
【2020-05-27 11:34:46.5625】,服务器开始启动:192.168.1.111:12345
【2020-05-27 11:35:19.4784】,2147311352
【2020-05-27 11:39:51.2612】,服务器开始启动:192.168.1.111:12345
【2020-05-27 11:46:13.7180】,服务器开始启动:192.168.1.111:12345
【2020-05-27 11:49:06.6543】,服务器开始启动:192.168.1.111:12345
【2020-05-27 11:57:56.8226】,服务器开始启动:192.168.1.111:12345
【2020-05-27 11:58:12.3789】,用户admin,进入调试模式
【2020-05-27 11:59:37.4752】,服务器重启:
【2020-05-27 12:46:54.0446】,服务器开始启动:192.168.1.111:12345
【2020-05-27 12:48:40.5835】,服务器开始启动:192.168.1.111:12345
【2020-05-27 12:51:53.4733】,用户admin,进入调试模式
【2020-05-27 13:23:59.3177】,进入自动销户
【2020-05-27 13:32:36.7416】,服务器开始启动:192.168.1.111:12345
【2020-05-27 13:32:46.9902】,服务器重启:
【2020-05-27 13:32:49.0018】,服务器开始启动:192.168.1.111:12345
【2020-05-27 13:33:30.4289】,服务器开始启动:192.168.1.111:12345
【2020-05-27 13:34:40.1803】,服务器开始启动:192.168.1.111:12345
【2020-05-27 13:37:57.9601】,服务器开始启动:192.168.1.111:12345
【2020-05-27 13:39:38.2911】,服务器重启:
【2020-05-27 13:42:44.6964】,服务器开始启动:192.168.1.111:12345
【2020-05-27 13:49:08.9632】,用户admin,进入调试模式
【2020-05-27 13:50:51.7541】,服务器开始启动:192.168.1.111:12345
【2020-05-27 14:01:01.6186】,用户admin,进入调试模式
【2020-05-27 14:01:47.6444】,服务器重启:
【2020-05-27 14:02:11.9055】,服务器开始启动:192.168.1.111:12345
【2020-05-27 14:12:29.6075】,用户admin,进入调试模式
【2020-05-27 14:13:00.2605】,服务器重启:
【2020-05-27 14:13:24.4986】,服务器开始启动:192.168.1.111:12345
【2020-05-27 14:19:27.2405】,服务器重启:
【2020-05-27 14:20:15.7357】,服务器开始启动:192.168.1.111:12345
【2020-05-27 14:20:33.4793】,服务器重启:
【2020-05-27 14:25:36.2456】,服务器开始启动:192.168.1.111:12345
【2020-05-27 14:38:51.4945】,服务器开始启动:192.168.1.111:12345
【2020-05-27 14:47:25.0457】,服务器开始启动:192.168.1.111:12345
【2020-05-27 14:50:21.0484】,服务器开始启动:192.168.1.111:12345
【2020-05-27 15:04:36.5778】,服务器开始启动:192.168.1.111:12345
【2020-05-27 15:05:47.3234】,4294769932
【2020-05-27 15:05:47.7204】,4294769932
【2020-05-27 15:05:51.6020】,4294769932
【2020-05-27 15:38:15.4633】,服务器开始启动:192.168.1.111:12345
【2020-05-27 15:41:17.4508】,服务器重启:
【2020-05-27 15:41:41.9732】,服务器开始启动:192.168.1.111:12345
【2020-05-27 15:50:39.6890】,服务器开始启动:192.168.1.111:12345
【2020-05-27 15:53:38.2831】,服务器开始启动:192.168.1.111:12345
【2020-05-27 16:01:59.3628】,服务器开始启动:192.168.1.111:12345
【2020-05-27 16:03:21.3744】,服务器开始启动:192.168.1.111:12345
【2020-05-27 16:33:04.5393】,服务器开始启动:192.168.1.111:12345
【2020-05-27 16:35:47.4823】,服务器重启:
【2020-05-27 16:39:06.8084】,服务器开始启动:192.168.1.111:12345
【2020-05-27 16:54:48.0151】,服务器开始启动:192.168.1.111:12345
【2020-05-27 17:11:33.3358】,服务器开始启动:192.168.1.111:12345
【2020-05-27 17:24:54.0666】,服务器开始启动:192.168.1.111:12345
【2020-05-27 17:25:31.4147】,服务器开始启动:192.168.1.111:12345
【2020-05-27 17:27:52.4203】,服务器开始启动:192.168.1.111:12345
【2020-05-27 17:30:31.5734】,服务器开始启动:192.168.1.111:12345
【2020-05-27 17:31:43.4965】,服务器开始启动:192.168.1.111:12345
【2020-05-27 17:38:01.0053】,服务器开始启动:192.168.1.111:12345
【2020-05-27 17:45:34.3014】,服务器开始启动:192.168.1.111:12345
【2020-05-27 18:41:10.2371】,服务器开始启动:192.168.1.111:12345
【2020-05-27 20:56:22.2392】,服务器重启:
【2020-05-28 09:26:48.1166】,服务器开始启动:192.168.1.111:12345
【2020-05-28 09:31:52.6427】,服务器重启:
【2020-05-28 09:46:12.9679】,服务器开始启动:192.168.1.111:12345
【2020-05-28 09:48:15.7086】,用户admin,进入调试模式
【2020-05-28 09:58:47.0095】,服务器重启:
【2020-05-28 09:59:11.8669】,服务器开始启动:192.168.1.111:12345
【2020-05-28 09:59:57.3850】,597441
【2020-05-28 09:59:57.4229】,597441
【2020-05-28 09:59:57.8717】,597441
【2020-05-28 10:05:49.6513】,用户admin,进入调试模式
【2020-05-28 10:06:04.4138】,A开始保存数据
【2020-05-28 10:06:04.4318】,True
【2020-05-28 10:06:04.4617】,A保存
【2020-05-28 10:06:04.5115】,True
【2020-05-28 10:06:04.5225】,A保存
【2020-05-28 10:06:04.6851】,B开始保存数据
【2020-05-28 10:06:04.7280】,C开始保存数据
【2020-05-28 10:06:04.7629】,B保存
【2020-05-28 10:06:04.7738】,C保存
【2020-05-28 10:06:04.7938】,True
【2020-05-28 10:06:04.8048】,B保存
【2020-05-28 10:06:04.8167】,True
【2020-05-28 10:06:04.8277】,C保存
【2020-05-28 10:15:49.7266】,服务器重启:
【2020-05-28 10:20:00.4756】,服务器开始启动:192.168.1.111:12345
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment