Commit 03821181 authored by 潘栩锋's avatar 潘栩锋 🚴

1.修复 AD盒B2 timegrid 推送改为 0.5s

2.添加 AD盒B2 给PC的1ms推送包 systick不连续次数
parent fbab6039
...@@ -59,7 +59,7 @@ namespace FlyADBase ...@@ -59,7 +59,7 @@ namespace FlyADBase
/// BeResetTime为上一次被复位时间, 此为 电脑的时间 /// BeResetTime为上一次被复位时间, 此为 电脑的时间
/// </summary> /// </summary>
public DateTime BeResetTime { get; private set; } public DateTime BeResetTime { get; private set; }
public int SystickResetCnt { get; private set; }
/// <summary> /// <summary>
/// 只要connect成功,获取systick被复位,都会从AD盒设备读取参数; /// 只要connect成功,获取systick被复位,都会从AD盒设备读取参数;
/// 否则, 设置参数 到 AD盒 /// 否则, 设置参数 到 AD盒
...@@ -326,7 +326,7 @@ namespace FlyADBase ...@@ -326,7 +326,7 @@ namespace FlyADBase
void constructor() void constructor()
{ {
Now = DateTime.Now; Now = DateTime.Now;
//sysTickContext.BeReseted += () => BeResetTime = DateTime.Now; sysTickContext.BeReseted += () => SystickResetCnt++;
...@@ -598,7 +598,7 @@ namespace FlyADBase ...@@ -598,7 +598,7 @@ namespace FlyADBase
void _core_PushRunResultEvent(PushRunResultEventArgs e) void _core_PushRunResultEvent(PushRunResultEventArgs e)
{ {
Now = sysTickContext.ToDateTime(e.SysTick); //Now = sysTickContext.ToDateTime(e.SysTick);
DriveStatus = e.Status; DriveStatus = e.Status;
...@@ -1219,7 +1219,7 @@ namespace FlyADBase ...@@ -1219,7 +1219,7 @@ namespace FlyADBase
} }
int ms = SystickSub(systick, systick_1st); int ms = SystickSub(systick, systick_1st);
if ((ms > 30))//记录与新的timemark 相差30ms,掉包很严重 if ((ms > 2))//记录与新的timemark 相差30ms,掉包很严重
{ {
//被复位了 //被复位了
BeReseted?.Invoke(); BeReseted?.Invoke();
......
...@@ -276,7 +276,7 @@ namespace FlyADBase ...@@ -276,7 +276,7 @@ namespace FlyADBase
} }
if (Now - lastUpdateADTime < TimeSpan.FromSeconds(0.1)) if (Now - lastUpdateADTime < TimeSpan.FromSeconds(0.5))
return; return;
//获取0.1s到现在的数据 //获取0.1s到现在的数据
......
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