我的第一个职位在这里,但该网站回答了我过去提出的许多问题。 我希望,我能够提供足够细节,解释我所面临的问题,因为我并不完全理解所有问题。 该网络正在处理我制造的read子!
从根本上讲,我有一套read子,每1 000米操作,从录像带获得一个框架柜,计算科索沃警察部队。 准确度足够了系统。 校对。 尽管我认识到,现在的时间是准确的(往往在事件之间超过1,000米)。 我还有另一个线索。 运行时间从网络到序列装置进行阅读。 问题在于,如果网络装置无法使用,而且随着时间的推移,科索沃警察部队的时间将完全摆脱yn! 因此,他们以前执行过每1015条武器(措施),但我开始这样做。 试图打上袖珍的连接的时代者,它未能使科索沃警察部队的反时代者完全脱掉(多达7 000名!) 不清楚为什么应该而且确实需要科索沃警察部队的反响,再过一次,不管怎样。
a. 代码之比;
FPS 反对
private void getFPS(Object stateInfo)//Run once per second
{
int frames = AxisMediaControl.getFrames; //Axis Encoder media control
int fps = frames - prevValue;
prevValue = frames;
setFPSBar(fps, fps_color); //Delegate to update progress bar for FPS
}
电池级
while (isRunning)
{
if (!comm.Connected) //comm is standard socket client
comm.Connect(this.ip_address, this.port); //Timeout here causes other timer threads to go out of sync
if (comm.Connected)
{
decimal reading = comm.getBatt_Level();
//Calculate Readings and update GUI
Console.Out.WriteLine("Reading = " + (int)prog);
break;//Debug
}
这是用于连接目前备案的法典——和;
public Socket mSocket { get; set; }
public bool Connect(IPAddress ip_address, UInt16 port)
{
try
{
mSocket.Connect(ip_address, port);
}
catch(Exception ex)
{
}
return mSocket.Connected;
}
希望不要太模糊!