diff --git a/leak_test_project/MainWindow.xaml.cs b/leak_test_project/MainWindow.xaml.cs index 4f549af..d27beca 100644 --- a/leak_test_project/MainWindow.xaml.cs +++ b/leak_test_project/MainWindow.xaml.cs @@ -25,6 +25,13 @@ namespace leak_test_project e.Cancel = true; return; } + + // ViewModel의 Dispose를 호출하여 모든 통신 연결 해제 + if (this.DataContext is IDisposable disposable) + { + disposable.Dispose(); + } + _timer?.Stop(); } diff --git a/leak_test_project/Manual/Communication_Manual.md b/leak_test_project/Manual/Communication_Manual.md index e8065df..29b9992 100644 --- a/leak_test_project/Manual/Communication_Manual.md +++ b/leak_test_project/Manual/Communication_Manual.md @@ -25,7 +25,7 @@ ZMDI ID 센서는 제품의 고유 ID(생산년도, 월, 일, 시리얼 등)를 --- -## 3. 리크 센서 (Sentinel C28) 설정 +## 3. Sentinel C28 설정 Sentinel C28 기기는 실제 리크 테스트를 수행하고 측정값을 전송합니다. 본 시스템에서는 단일 포트를 통해 기기와 통신하며, 기기 내부의 채널 번호(C01, C02)를 통해 데이터를 구분합니다. ### 설정 항목 diff --git a/leak_test_project/Manual/Parameter_Manual.md b/leak_test_project/Manual/Parameter_Manual.md index 48fe08c..75ef160 100644 --- a/leak_test_project/Manual/Parameter_Manual.md +++ b/leak_test_project/Manual/Parameter_Manual.md @@ -45,7 +45,7 @@ - **Right Port (우측 포트)**: - 장비의 우측(Channel 2) ZMDI 센서가 연결된 Serial COM 포트를 지정합니다. -### 3.2 리크 센서(Sentinel C28) 설정 +### 3.2 Sentinel C28 설정 실제 리크 측정값을 전송하는 메인 센서와의 통신 설정입니다. - **Sensor BaudRate**: diff --git a/leak_test_project/Services/Board4253SensorService.cs b/leak_test_project/Services/Board4253SensorService.cs index cb57a0b..e6f28a2 100644 --- a/leak_test_project/Services/Board4253SensorService.cs +++ b/leak_test_project/Services/Board4253SensorService.cs @@ -34,11 +34,16 @@ namespace leak_test_project.Services { try { - ProgressMessage?.Invoke(this, "4253 보드에서 ID 읽기 시도 중..."); - int channel = _sensorIndex + 1; + // 0. 초기화 (x00o 전송) + ProgressMessage?.Invoke(this, "4253 보드 초기화 중..."); + // x00o 명령을 보내고 응답 내용에 상관없이 다음 단계 진행 (최대 5초 대기) + Task.Run(() => _service.SendCommandAsync("x00o\r\n")).Wait(5000); + Task.Delay(350).Wait(); // 보드 안정화 대기 + // 1. 보드 상태 확인 (Fail인 경우 중단) + ProgressMessage?.Invoke(this, "4253 보드 데이터 읽는 중..."); int extendedTimeout = 15000; string statusCmd = $"x00c_00{channel}101:owt28006727ea97c7801"; var statusTask = Task.Run(() => _service.CheckStatusAsync(channel)); @@ -95,8 +100,8 @@ namespace leak_test_project.Services { if (attempt < maxAttempts) { - ProgressMessage?.Invoke(this, $"ID 끝자리가 'F'입니다 ({rawId}). 재시도 중... ({attempt}/{maxAttempts})"); - Task.Delay(500).Wait(); // 재시도 전 약간의 딜레이 + ProgressMessage?.Invoke(this, $"ID 읽기 재시도 중... ({attempt}/{maxAttempts})"); + Task.Delay(350).Wait(); // 재시도 전 약간의 딜레이 continue; } else @@ -133,7 +138,7 @@ namespace leak_test_project.Services public void Dispose() { - _service.Dispose(); + // 공유 서비스(Board4253Service)는 외부(HomeViewModel)에서 관리하므로 여기서 해제하지 않음 } } } diff --git a/leak_test_project/Services/Board4253Service.cs b/leak_test_project/Services/Board4253Service.cs index 0457ead..81ef4e5 100644 --- a/leak_test_project/Services/Board4253Service.cs +++ b/leak_test_project/Services/Board4253Service.cs @@ -153,7 +153,7 @@ namespace leak_test_project.Services return null; } - private async Task SendCommandAsync(string command) + public async Task SendCommandAsync(string command) { await _lock.WaitAsync(); try @@ -174,7 +174,7 @@ namespace leak_test_project.Services _receiveBuffer.Clear(); LastResponse = ""; _responseTcs = new TaskCompletionSource(); - + _communication.ClearBuffer(); // 이전에 남아있던 패킷 조각 완벽히 제거 _communication.Write(command); @@ -196,7 +196,7 @@ namespace leak_test_project.Services } } } - + FileLogger.Log("ERROR", $"[Board4253] Failed to receive response after 3 retries: {command.Trim()}"); return null; } @@ -216,7 +216,8 @@ namespace leak_test_project.Services if (currentContent.IndexOf("", StringComparison.OrdinalIgnoreCase) >= 0 || currentContent.IndexOf("Success", StringComparison.OrdinalIgnoreCase) >= 0 || - currentContent.IndexOf("Fail", StringComparison.OrdinalIgnoreCase) >= 0) + currentContent.IndexOf("Fail", StringComparison.OrdinalIgnoreCase) >= 0 || + currentContent.IndexOf("OFF", StringComparison.OrdinalIgnoreCase) >= 0) { isComplete = true; } diff --git a/leak_test_project/Services/TestProcessService.cs b/leak_test_project/Services/TestProcessService.cs index 58ef08b..b997248 100644 --- a/leak_test_project/Services/TestProcessService.cs +++ b/leak_test_project/Services/TestProcessService.cs @@ -46,6 +46,7 @@ namespace leak_test_project.Services private volatile bool _leftTestStart = false; private volatile bool _rightTestStart = false; private volatile bool _running = true; + private readonly SemaphoreSlim _testLock = new SemaphoreSlim(1, 1); // LEAK 시험 결과를 수신하기 위한 필드 private ParsedData _leftResult; @@ -113,40 +114,53 @@ namespace leak_test_project.Services /// public async System.Threading.Tasks.Task ExecuteSensorTestAsync(int testIndex) { - bool isLeft = (testIndex == 0); - - NotifyProgress(testIndex, "시험 시작", "LightSeaGreen"); - ResultClearRequested?.Invoke(this, testIndex); - - await System.Threading.Tasks.Task.Delay(500); // UI 피드백을 위한 짧은 대기 - - NotifyProgress(testIndex, "센서 정보 읽는 중", "LightSeaGreen"); - - var sensor = isLeft ? _leftSensor : _rightSensor; - - // 시리얼 통신이므로 백그라운드에서 실행 - var sensorData = await System.Threading.Tasks.Task.Run(() => sensor.ReadSensor()); - - if (sensorData != null) + if (_testLock.CurrentCount == 0) { - SensorReadComplete?.Invoke(this, (testIndex, sensorData)); + ResultClearRequested?.Invoke(this, testIndex); + NotifyProgress(testIndex, "대기중", "LightYellow"); + } + await _testLock.WaitAsync(); + try + { + bool isLeft = (testIndex == 0); + + NotifyProgress(testIndex, "시험 시작", "LightSeaGreen"); + ResultClearRequested?.Invoke(this, testIndex); + + await System.Threading.Tasks.Task.Delay(500); // UI 피드백을 위한 짧은 대기 + + NotifyProgress(testIndex, "센서 정보 읽는 중", "LightSeaGreen"); - // 실제 검사 시퀀스와 동일한 불량 제품 필터링 체크 - if (sensorData.PrevResult != "F") + var sensor = isLeft ? _leftSensor : _rightSensor; + + // 시리얼 통신이므로 백그라운드에서 실행 + var sensorData = await System.Threading.Tasks.Task.Run(() => sensor.ReadSensor()); + + if (sensorData != null) { - NotifyError(testIndex, "불량 제품 투입 (이전 결과: " + sensorData.PrevResult + ")"); - return; - } + SensorReadComplete?.Invoke(this, (testIndex, sensorData)); + + // 실제 검사 시퀀스와 동일한 불량 제품 필터링 체크 + if (sensorData.PrevResult != "F") + { + NotifyError(testIndex, "불량 제품 투입 (이전 결과: " + sensorData.PrevResult + ")"); + return; + } - NotifyProgress(testIndex, "ID 테스트 완료", "LightBlue"); + NotifyProgress(testIndex, "ID 테스트 완료", "LightBlue"); + } + else + { + // 실패 시 NotifyError를 호출하지 않는 것도 실제 시퀀스와 동일 (센서 서비스가 이미 에러 이벤트 발생시킴) + // 다만 UI 갱신을 위해 빈 데이터는 전송 + sensorData = new SensorIdData { ID = "-", PrevResult = "F" }; + SensorReadComplete?.Invoke(this, (testIndex, sensorData)); + NotifyProgress(testIndex, "ID 테스트 실패", "Red"); + } } - else + finally { - // 실패 시 NotifyError를 호출하지 않는 것도 실제 시퀀스와 동일 (센서 서비스가 이미 에러 이벤트 발생시킴) - // 다만 UI 갱신을 위해 빈 데이터는 전송 - sensorData = new SensorIdData { ID = "-", PrevResult = "F" }; - SensorReadComplete?.Invoke(this, (testIndex, sensorData)); - NotifyProgress(testIndex, "ID 테스트 실패", "Red"); + _testLock.Release(); } } @@ -185,153 +199,170 @@ namespace leak_test_project.Services bool shouldStart = isLeft ? _leftTestStart : _rightTestStart; if (!shouldStart) continue; - // 플래그 초기화 - if (isLeft) _leftTestStart = false; - else _rightTestStart = false; - - NotifyProgress(testIndex, "시험 시작", "LightSeaGreen"); - ResultClearRequested?.Invoke(this, testIndex); - - // === 1단계: 센서 정보 읽기 === - NotifyProgress(testIndex, "센서 정보 읽는 중", "LightSeaGreen"); - var sensor = isLeft ? _leftSensor : _rightSensor; - var sensorData = sensor.ReadSensor(); - - if (sensorData != null) + // 순차 실행을 위한 락 획득 (좌/우 동시 테스트 방지) + if (_testLock.CurrentCount == 0) { - SensorReadComplete?.Invoke(this, (testIndex, sensorData)); + ResultClearRequested?.Invoke(this, testIndex); + NotifyProgress(testIndex, "대기중", "LightYellow"); } - else + _testLock.Wait(); + try { - // 센서 읽기 실패해도 시험은 계속 진행 - sensorData = new SensorIdData { ID = "-", PrevResult = "F" }; - SensorReadComplete?.Invoke(this, (testIndex, sensorData)); - } + // 하드웨어 통신 안정화를 위한 짧은 대기 (이전 채널 종료 후 여유 시간) + Thread.Sleep(350); - // === 2단계: 불량 제품 필터링 === - if (sensorData.PrevResult != "F") - { - NotifyError(testIndex, "불량 제품 투입 (이전 결과: " + sensorData.PrevResult + ")"); - continue; - } + // 플래그 초기화 + if (isLeft) _leftTestStart = false; + else _rightTestStart = false; - // === 3단계: LEAK 시험 수행 === - NotifyProgress(testIndex, "LEAK 시험중", "LightYellow"); + NotifyProgress(testIndex, "시험 시작", "LightSeaGreen"); + ResultClearRequested?.Invoke(this, testIndex); - // 결과 대기 리셋 - var resultReady = isLeft ? _leftResultReady : _rightResultReady; - resultReady.Reset(); - if (isLeft) _leftResult = null; - else _rightResult = null; + // === 1단계: 센서 정보 읽기 === + NotifyProgress(testIndex, "센서 정보 읽는 중", "LightSeaGreen"); + var sensor = isLeft ? _leftSensor : _rightSensor; + var sensorData = sensor.ReadSensor(); - // C28에서 결과를 수신할 때까지 대기 (레거시와 동일하게 30초 설정) - bool received = resultReady.Wait(TimeSpan.FromSeconds(30)); + if (sensorData != null) + { + SensorReadComplete?.Invoke(this, (testIndex, sensorData)); + } + else + { + // 센서 읽기 실패해도 시험은 계속 진행 + sensorData = new SensorIdData { ID = "-", PrevResult = "F" }; + SensorReadComplete?.Invoke(this, (testIndex, sensorData)); + } - if (!received) - { - NotifyError(testIndex, "LEAK 센서 통신 타임아웃"); - _dioBoard.WriteOutput(side + "_NG", true); - - // 타임아웃 시에도 UI(그리드)에 NG로 기록되도록 이벤트 발생 - TestCompleted?.Invoke(this, new TestResultEventArgs + // === 2단계: 불량 제품 필터링 === + if (sensorData.PrevResult != "F") { - TestIndex = testIndex, - SensorData = sensorData, - MeasuredValue = "0.000", - Judgment = "NG", - SensorJudgment = "T/O", // Timeout - SpecMismatch = false - }); - - // 로그 파일에도 기록 - FileLogger.LogInspectData(new InspectData + NotifyError(testIndex, "불량 제품 투입 (이전 결과: " + sensorData.PrevResult + ")"); + continue; + } + + // === 3단계: LEAK 시험 수행 === + NotifyProgress(testIndex, "LEAK 시험중", "LightYellow"); + + // 결과 대기 리셋 + var resultReady = isLeft ? _leftResultReady : _rightResultReady; + resultReady.Reset(); + if (isLeft) _leftResult = null; + else _rightResult = null; + + // C28에서 결과를 수신할 때까지 대기 (레거시와 동일하게 30초 설정) + bool received = resultReady.Wait(TimeSpan.FromSeconds(30)); + + if (!received) + { + NotifyError(testIndex, "LEAK 센서 통신 타임아웃"); + _dioBoard.WriteOutput(side + "_NG", true); + + // 타임아웃 시에도 UI(그리드)에 NG로 기록되도록 이벤트 발생 + TestCompleted?.Invoke(this, new TestResultEventArgs + { + TestIndex = testIndex, + SensorData = sensorData, + MeasuredValue = "0.000", + Judgment = "NG", + SensorJudgment = "T/O", // Timeout + SpecMismatch = false + }); + + // 로그 파일에도 기록 + FileLogger.LogInspectData(new InspectData + { + InspectDate = DateTime.Now.ToString("yyyy-MM-dd"), + InspectTime = DateTime.Now.ToString("HH:mm:ss"), + Channel = side, + ProductId = sensorData.ID, + MeasuredValue = "0.000", + Judgment = "NG", + Mode = sensorData.McLine == "0" ? "개발" : "양산", + LineNo = sensorData.LineNo, + ProductType = sensorData.Item, + SpecUL = ConfigManager.Current.SpecUL.ToString("F2"), + SpecLL = ConfigManager.Current.SpecLL.ToString("F2"), + Retest = "N" + }); + + continue; + } + + var leakResult = isLeft ? _leftResult : _rightResult; + if (leakResult == null) + { + NotifyError(testIndex, "LEAK 센서 데이터 오류"); + _dioBoard.WriteOutput(side + "_NG", true); + continue; + } + + // === 4단계: 판정 === + double specUL = ConfigManager.Current.SpecUL; + double specLL = ConfigManager.Current.SpecLL; + string programJudgment = SentinelParser.EvaluateJudgment(leakResult.MeasuredValue, specUL, specLL); + string sensorJudgment = leakResult.SensorJudgment ?? leakResult.Judgment ?? "-"; + + // === 5단계: SPEC 교차 검증 === + bool specMismatch = false; + string normalizedProgram = (programJudgment == "OK") ? "A" : "R"; + string normalizedSensor = sensorJudgment; + + // 센서 판정이 Accept/Reject 형식인 경우 + if (sensorJudgment == "OK" || sensorJudgment == "A") normalizedSensor = "A"; + else if (sensorJudgment == "NG" || sensorJudgment == "R") normalizedSensor = "R"; + + if (normalizedProgram != normalizedSensor && normalizedSensor != "-") + { + specMismatch = true; + Console.WriteLine($"[TestProcess] {side} SPEC Mismatch! Program={programJudgment}, Sensor={sensorJudgment}"); + } + + // === 6단계: 로그 기록 === + var inspectData = new InspectData { InspectDate = DateTime.Now.ToString("yyyy-MM-dd"), InspectTime = DateTime.Now.ToString("HH:mm:ss"), Channel = side, ProductId = sensorData.ID, - MeasuredValue = "0.000", - Judgment = "NG", + MeasuredValue = leakResult.MeasuredValue.ToString("F3"), + Judgment = programJudgment, Mode = sensorData.McLine == "0" ? "개발" : "양산", LineNo = sensorData.LineNo, ProductType = sensorData.Item, - SpecUL = ConfigManager.Current.SpecUL.ToString("F2"), - SpecLL = ConfigManager.Current.SpecLL.ToString("F2"), + SpecUL = specUL.ToString("F2"), + SpecLL = specLL.ToString("F2"), Retest = "N" - }); - - continue; - } - - var leakResult = isLeft ? _leftResult : _rightResult; - if (leakResult == null) - { - NotifyError(testIndex, "LEAK 센서 데이터 오류"); - _dioBoard.WriteOutput(side + "_NG", true); - continue; - } - - // === 4단계: 판정 === - double specUL = ConfigManager.Current.SpecUL; - double specLL = ConfigManager.Current.SpecLL; - string programJudgment = SentinelParser.EvaluateJudgment(leakResult.MeasuredValue, specUL, specLL); - string sensorJudgment = leakResult.SensorJudgment ?? leakResult.Judgment ?? "-"; + }; + FileLogger.LogInspectData(inspectData); - // === 5단계: SPEC 교차 검증 === - bool specMismatch = false; - string normalizedProgram = (programJudgment == "OK") ? "A" : "R"; - string normalizedSensor = sensorJudgment; - - // 센서 판정이 Accept/Reject 형식인 경우 - if (sensorJudgment == "OK" || sensorJudgment == "A") normalizedSensor = "A"; - else if (sensorJudgment == "NG" || sensorJudgment == "R") normalizedSensor = "R"; + // === 7단계: DIO 출력 === + if (programJudgment == "OK") + { + _dioBoard.WriteOutput(side + "_OK", true); + } + else + { + _dioBoard.WriteOutput(side + "_NG", true); + } - if (normalizedProgram != normalizedSensor && normalizedSensor != "-") - { - specMismatch = true; - Console.WriteLine($"[TestProcess] {side} SPEC Mismatch! Program={programJudgment}, Sensor={sensorJudgment}"); - } + // 완료 알림 + NotifyProgress(testIndex, "시험 완료", "LightBlue"); - // === 6단계: 로그 기록 === - var inspectData = new InspectData - { - InspectDate = DateTime.Now.ToString("yyyy-MM-dd"), - InspectTime = DateTime.Now.ToString("HH:mm:ss"), - Channel = side, - ProductId = sensorData.ID, - MeasuredValue = leakResult.MeasuredValue.ToString("F3"), - Judgment = programJudgment, - Mode = sensorData.McLine == "0" ? "개발" : "양산", - LineNo = sensorData.LineNo, - ProductType = sensorData.Item, - SpecUL = specUL.ToString("F2"), - SpecLL = specLL.ToString("F2"), - Retest = "N" - }; - FileLogger.LogInspectData(inspectData); - - // === 7단계: DIO 출력 === - if (programJudgment == "OK") - { - _dioBoard.WriteOutput(side + "_OK", true); + TestCompleted?.Invoke(this, new TestResultEventArgs + { + TestIndex = testIndex, + SensorData = sensorData, + MeasuredValue = leakResult.MeasuredValue.ToString("F3"), + Judgment = programJudgment, + SensorJudgment = sensorJudgment, + SpecMismatch = specMismatch + }); } - else + finally { - _dioBoard.WriteOutput(side + "_NG", true); + _testLock.Release(); } - - // 완료 알림 - NotifyProgress(testIndex, "시험 완료", "LightBlue"); - - TestCompleted?.Invoke(this, new TestResultEventArgs - { - TestIndex = testIndex, - SensorData = sensorData, - MeasuredValue = leakResult.MeasuredValue.ToString("F3"), - Judgment = programJudgment, - SensorJudgment = sensorJudgment, - SpecMismatch = specMismatch - }); } } diff --git a/leak_test_project/ViewModels/HomeViewModel.cs b/leak_test_project/ViewModels/HomeViewModel.cs index 3e65149..757aabc 100644 --- a/leak_test_project/ViewModels/HomeViewModel.cs +++ b/leak_test_project/ViewModels/HomeViewModel.cs @@ -232,7 +232,7 @@ namespace leak_test_project.ViewModels if (!_sentinelService.Connect()) { - string msg = $"리크 센서 포트 연결 실패 ({config.SensorPort})"; + string msg = $"Sentinel C28 포트 연결 실패 ({config.SensorPort})"; LeftError = msg; RightError = msg; } diff --git a/leak_test_project/Views/CommunicationWindow.xaml b/leak_test_project/Views/CommunicationWindow.xaml index 99798a5..0f97037 100644 --- a/leak_test_project/Views/CommunicationWindow.xaml +++ b/leak_test_project/Views/CommunicationWindow.xaml @@ -120,7 +120,7 @@ - + diff --git a/leak_test_project/bin/Release/Logs/2026-04-23_system.log b/leak_test_project/bin/Release/Logs/2026-04-23_system.log new file mode 100644 index 0000000..39dcacf --- /dev/null +++ b/leak_test_project/bin/Release/Logs/2026-04-23_system.log @@ -0,0 +1,893 @@ +[15:45:05.914] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[15:45:06.737] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[15:45:07.569] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[15:47:02.314] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[15:47:03.143] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[15:47:03.968] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[15:47:04.799] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[15:47:04.799] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[15:47:05.307] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[15:47:32.827] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[15:47:33.636] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[15:47:34.443] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[15:47:35.766] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:owt28006727ea97c7801, ReceivedSoFar: +[15:47:36.582] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:owt28006727ea97c7801, ReceivedSoFar: +[15:47:37.602] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[15:47:38.419] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[15:47:39.248] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[15:47:52.043] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[15:47:52.861] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[15:47:53.687] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[15:47:54.985] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:owt28006727ea97c7801, ReceivedSoFar: +[15:47:55.799] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:owt28006727ea97c7801, ReceivedSoFar: +[15:47:56.811] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[15:47:57.628] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[15:47:58.440] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:04:03.623] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[16:04:03.623] [ERROR] [Board4253] Handshake failed. Command: x00o, Received: +[16:04:12.856] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[16:04:12.856] [ERROR] [Board4253] Handshake failed. Command: x00o, Received: +[16:05:23.178] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:05:23.986] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:05:24.802] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:05:30.488] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:05:31.300] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:05:32.111] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:05:35.655] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:05:36.472] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:05:37.285] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:05:42.619] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:05:43.439] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:05:44.255] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:11:27.617] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[16:11:27.617] [ERROR] [Board4253] Handshake failed. Command: x00o, Received: +[16:18:18.135] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:18:18.947] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:18:19.759] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:18:20.885] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:18:21.701] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:18:22.511] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[16:18:23.323] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[16:18:23.323] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[16:18:23.323] [ERROR] [Board4253] Handshake failed. Command: x00o, Received: +[16:18:39.272] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:18:40.086] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:18:40.899] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:18:49.156] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:18:49.964] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:18:50.773] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:18:51.586] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:18:51.586] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[16:18:52.093] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:18:52.900] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:18:53.714] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[16:18:54.527] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[16:18:54.527] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[16:18:54.528] [ERROR] [Board4253] Handshake failed. Command: x00o, Received: +[16:18:55.036] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:18:55.851] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:18:57.054] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:18:57.867] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:18:58.681] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:18:59.494] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:18:59.494] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[16:19:00.002] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:19:00.819] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:19:01.632] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[16:19:02.446] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[16:19:02.447] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[16:19:02.447] [ERROR] [Board4253] Handshake failed. Command: x00o, Received: +[16:19:05.430] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:19:06.244] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:19:07.056] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:19:07.867] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:19:07.867] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[16:19:08.377] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:19:08.879] [ERROR] [Board4253] Handshake failed. Command: x00o, Received: 023104C235258749 + + +[16:19:09.410] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:19:10.226] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:19:11.042] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[16:19:12.148] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:19:12.962] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:19:13.775] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:19:18.990] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:19:19.805] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:19:20.618] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:20:08.044] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:20:08.853] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:20:09.665] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:20:10.478] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:20:10.478] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[16:20:10.986] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:20:11.483] [ERROR] [Board4253] Handshake failed. Command: x00o, Received: 023104C235258749 + + +[16:20:12.004] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:20:12.821] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:20:13.633] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[16:20:14.743] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:20:15.554] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:20:16.367] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:20:17.180] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:20:17.180] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[16:20:17.687] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:20:18.192] [ERROR] [Board4253] Handshake failed. Command: x00o, Received: 023104C235258749 + + +[16:20:22.180] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:20:22.993] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:20:24.066] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:20:24.882] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:20:25.695] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:20:26.508] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:20:26.508] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[16:20:27.016] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:20:27.840] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:20:28.649] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[16:20:29.462] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[16:20:29.463] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[16:20:29.463] [ERROR] [Board4253] Handshake failed. Command: x00o, Received: +[16:20:29.971] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:20:30.788] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:20:31.988] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:20:32.804] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:20:33.616] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:20:34.427] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:20:34.427] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[16:20:37.849] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:20:38.665] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:20:39.477] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[16:20:40.292] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[16:20:40.292] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[16:20:40.292] [ERROR] [Board4253] Handshake failed. Command: x00o, Received: +[16:20:46.300] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:20:47.115] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:20:47.932] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:23:13.390] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[16:23:13.390] [ERROR] [Board4253] Handshake failed. Command: x00o, Received: +[16:23:14.640] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[16:23:14.640] [ERROR] [Board4253] Handshake failed. Command: x00o, Received: +[16:23:22.237] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:23:23.052] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:23:23.866] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:23:24.678] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:23:24.678] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[16:23:25.185] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:23:25.678] [ERROR] [Board4253] Handshake failed. Command: x00o, Received: 023104C235258749 + + +[16:23:26.204] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:23:27.020] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:23:27.835] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[16:23:28.646] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[16:23:28.646] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[16:23:28.646] [ERROR] [Board4253] Handshake failed. Command: x00o, Received: +[16:23:29.156] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:23:30.142] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:23:30.958] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:23:31.773] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:23:32.587] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:23:32.587] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[16:23:40.657] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:23:41.473] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:23:42.285] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:23:45.762] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:23:46.586] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:23:47.395] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[16:23:48.787] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:23:49.599] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:23:50.413] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:23:51.225] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:23:51.225] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[16:23:51.733] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:23:52.552] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:23:53.364] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[16:23:54.176] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[16:23:54.176] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[16:23:54.177] [ERROR] [Board4253] Handshake failed. Command: x00o, Received: +[16:23:54.685] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:23:55.513] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:23:56.705] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:23:57.521] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:23:58.333] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:23:59.146] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:23:59.147] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[16:24:02.337] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:24:03.609] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:24:04.428] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:24:05.241] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:24:20.719] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:24:21.534] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:24:22.352] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:24:23.172] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:24:23.172] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[16:24:23.680] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:24:24.165] [ERROR] [Board4253] Handshake failed. Command: x00o, Received: 023104C235258749 + + +[16:24:24.672] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:24:25.490] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:24:26.304] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[16:24:27.421] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:24:28.238] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:24:29.053] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:24:29.866] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:24:29.866] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[16:24:30.375] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:24:30.868] [ERROR] [Board4253] Handshake failed. Command: x00o, Received: 023104C235258749 + + +[16:29:06.122] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:29:06.930] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:29:07.739] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:29:08.875] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:29:09.689] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:29:10.501] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[16:29:11.313] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[16:29:11.313] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[16:29:11.314] [ERROR] [Board4253] Handshake failed. Command: x00o, Received: +[16:30:04.617] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:30:05.439] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:30:06.251] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:30:07.064] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:30:07.064] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[16:30:07.570] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:30:08.391] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:30:09.209] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[16:30:10.017] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[16:30:10.018] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[16:30:10.018] [ERROR] [Board4253] Handshake failed. Command: x00o, Received: +[16:30:10.529] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:30:11.345] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:30:12.532] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:30:13.345] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:30:14.156] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:30:14.973] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:30:14.973] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[16:30:17.195] [ERROR] [Board4253] Handshake failed. Command: x00o, Received: 023104C235258749 + + +[16:30:34.655] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:30:35.470] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:30:36.282] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:30:39.229] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:30:40.371] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:30:41.187] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:30:42.001] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:30:47.535] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:30:48.765] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:30:49.577] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:30:50.393] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:30:51.515] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:30:52.328] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:30:53.142] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[16:30:53.956] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[16:30:53.956] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[16:30:53.956] [ERROR] [Board4253] Handshake failed. Command: x00o, Received: +[16:30:54.467] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:30:55.464] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:30:56.281] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:30:57.093] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:30:57.909] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:30:57.910] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[16:30:58.416] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:30:59.234] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:31:00.047] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[16:31:00.859] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[16:31:00.859] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[16:31:00.859] [ERROR] [Board4253] Handshake failed. Command: x00o, Received: +[16:31:34.620] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:31:35.438] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:31:36.250] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:31:37.066] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:31:37.067] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[16:31:37.576] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:31:38.391] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:31:39.204] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[16:31:40.014] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[16:31:40.014] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[16:31:40.014] [ERROR] [Board4253] Handshake failed. Command: x00o, Received: +[16:31:40.478] [ERROR] [Board4253] Handshake failed. Command: x00o, Received: 023104C235258749 + + +[16:31:40.995] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:31:41.814] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:31:42.627] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[16:31:43.747] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:31:44.563] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:31:45.377] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:36:29.389] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:36:30.204] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:36:31.013] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:36:31.826] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:36:31.826] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[16:36:32.334] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:36:34.631] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:36:35.452] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:36:36.266] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[16:36:37.494] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:36:38.308] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:36:39.121] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:36:43.386] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:36:44.200] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:36:45.013] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:36:45.827] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:36:45.827] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[16:36:46.336] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:36:47.334] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:36:48.152] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:36:48.965] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:36:49.777] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:36:49.777] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[16:36:50.284] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:40:09.075] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:40:09.887] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:40:10.699] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:40:11.838] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:40:12.653] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:40:13.462] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[16:41:03.107] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:41:03.927] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:41:04.744] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:41:05.557] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:41:05.557] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[16:41:06.066] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:41:06.887] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:41:07.699] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[16:41:08.508] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[16:41:08.508] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[16:41:13.413] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:41:14.232] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:41:15.041] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:41:15.854] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:41:15.854] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[16:41:16.363] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:41:19.651] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:41:20.464] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:41:21.276] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[16:41:37.351] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:41:38.167] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:41:38.980] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:41:44.162] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:41:45.457] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:41:46.274] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:41:47.086] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:41:47.900] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:41:47.900] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[16:41:48.408] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:41:50.916] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:41:52.366] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:41:53.182] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:41:53.993] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:41:54.804] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:41:54.805] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[16:41:55.312] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:41:57.549] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:41:58.367] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:41:59.180] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[16:42:00.477] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:42:01.290] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:42:02.102] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:42:04.492] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:42:05.304] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:42:06.116] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[16:42:07.365] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:42:08.180] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:42:08.995] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[16:42:11.492] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[16:42:12.305] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[16:42:13.333] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:42:14.150] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[16:42:14.962] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:09:10.139] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:09:10.947] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:09:11.761] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:09:12.572] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:09:12.572] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[17:09:13.081] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:09:13.900] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:09:14.715] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:09:15.527] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[17:09:15.527] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[17:09:16.040] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:09:16.854] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:09:20.274] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:09:21.087] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:09:21.898] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:09:22.715] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:09:22.715] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:09:23.223] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:09:25.392] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:09:26.213] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:09:27.211] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:09:28.026] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:09:28.837] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:09:31.092] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:09:31.901] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:09:32.926] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:09:33.746] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:09:34.554] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:09:38.660] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:09:39.994] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:09:40.808] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:09:41.619] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:09:42.432] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:09:42.432] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[17:09:42.940] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:09:43.759] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:09:44.573] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:09:45.386] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:09:45.386] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:09:45.895] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:09:46.715] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:09:47.911] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:09:48.728] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:09:49.539] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:14:27.666] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:14:28.488] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:14:29.318] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:14:30.147] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:14:30.147] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[17:14:30.658] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:14:32.146] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:14:32.959] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:14:33.775] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:14:34.799] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:14:35.622] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:14:36.439] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:14:37.268] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:14:37.268] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:14:37.776] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:14:38.597] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:14:39.427] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:14:40.251] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:14:40.251] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:14:40.759] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:14:41.579] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:14:43.221] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:14:44.037] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:14:44.852] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:14:45.876] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:14:46.694] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:14:47.521] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:14:48.355] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:14:48.355] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:14:48.862] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:14:50.346] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:14:51.176] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:14:51.989] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:14:52.804] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[17:14:52.804] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[17:15:45.222] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:15:46.038] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:15:46.850] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:15:48.482] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:15:49.302] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:15:50.114] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:15:50.928] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[17:15:50.928] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[17:15:53.824] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:15:54.632] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:15:55.444] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:15:58.618] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:15:59.428] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:16:00.738] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:16:01.556] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:16:02.364] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:16:03.183] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:16:03.183] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:16:03.691] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:16:04.507] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:16:05.320] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:16:06.133] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:16:06.133] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:16:06.641] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:16:07.461] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:16:08.273] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:16:09.085] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:16:09.086] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:16:10.095] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:16:10.911] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:16:11.726] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:16:12.798] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:16:13.614] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:16:14.427] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:16:17.375] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:16:18.192] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:16:19.704] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:16:20.523] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:16:21.336] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:16:37.521] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:16:38.334] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:16:39.146] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:16:43.207] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:16:44.021] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:16:44.831] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:16:46.461] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:16:47.273] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:16:48.084] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:16:49.082] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:16:49.897] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:16:50.710] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:16:51.521] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:16:51.521] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:16:52.030] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:17:42.555] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:17:43.364] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:17:44.187] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:17:45.016] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:17:45.016] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[17:17:45.524] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:17:47.018] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:17:47.833] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:17:48.653] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:17:49.475] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[17:17:49.476] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[17:21:07.675] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:21:08.488] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:21:09.301] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:21:10.114] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:21:10.115] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[17:21:10.623] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:21:12.131] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:21:12.943] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:21:13.757] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:21:14.564] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[17:21:14.564] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[17:21:16.947] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:21:18.185] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:21:19.005] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:21:19.816] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:21:22.567] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:21:23.380] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:21:24.190] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:21:25.005] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[17:21:25.005] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[17:21:26.313] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:21:27.128] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:21:27.939] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:21:28.755] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:21:28.755] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[17:21:29.263] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:21:31.529] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:21:32.347] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:21:33.159] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:21:34.393] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:21:35.206] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:21:36.018] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:21:36.833] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:21:36.833] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:21:37.343] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:21:38.160] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:21:38.972] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:21:39.785] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:21:39.786] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:21:40.293] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:21:41.112] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:21:41.926] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:21:42.737] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:21:42.738] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:21:46.803] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:21:47.612] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:21:48.862] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:21:49.676] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:21:50.488] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:21:53.151] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:21:54.564] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:21:55.380] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:21:56.189] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:21:59.201] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:22:00.020] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:22:00.832] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:22:01.643] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[17:22:01.643] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[17:22:14.075] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:22:14.894] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:22:15.708] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:22:18.023] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:22:18.833] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:22:19.846] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:22:20.659] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:22:21.472] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:22:23.861] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:22:24.673] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:22:25.701] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:22:26.519] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:22:27.332] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:22:28.144] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:22:28.144] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[17:22:28.651] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:22:30.730] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:22:31.551] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:22:32.594] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:22:33.409] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:22:34.222] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:22:36.352] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:22:37.167] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:22:37.987] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:22:38.800] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[17:22:38.800] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[17:22:44.161] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:22:44.973] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:22:45.783] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:22:46.597] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:22:46.597] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:22:47.109] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:22:47.927] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:22:48.735] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:22:49.552] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:22:49.552] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:22:51.029] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:22:51.847] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:22:52.659] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:22:53.670] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:22:54.489] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:22:55.303] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:23:43.342] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:23:44.158] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:23:44.971] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:23:46.583] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:23:47.391] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:23:48.209] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:23:49.017] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[17:23:49.017] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[17:23:53.941] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:23:54.753] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:23:55.565] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:23:56.377] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:23:56.377] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:23:56.886] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:23:58.398] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:23:59.207] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:24:00.021] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:24:01.047] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:24:01.863] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:24:02.676] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:24:07.219] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:24:08.034] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:24:08.847] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:24:09.658] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:24:09.658] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[17:24:10.168] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:24:11.677] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:24:12.485] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:24:13.299] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:24:14.111] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[17:24:14.111] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[17:24:17.063] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:24:17.877] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:24:18.689] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:24:19.500] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:24:19.500] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[17:24:20.015] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:24:21.524] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:24:22.345] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:24:23.157] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:24:24.176] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:24:24.985] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:24:25.797] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:24:26.613] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:24:26.614] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:24:27.121] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:24:29.937] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:24:30.753] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:24:31.566] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:24:32.377] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[17:24:32.377] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[17:24:33.387] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:24:34.684] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:24:35.504] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:24:36.316] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:24:37.131] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:24:37.131] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:24:37.639] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:24:54.758] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:24:55.566] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:24:56.379] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:25:03.433] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:25:04.251] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:25:05.065] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:25:05.877] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:25:05.877] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:25:06.385] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:25:07.893] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:25:08.704] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:25:09.517] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:25:18.782] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:25:19.592] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:25:20.410] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:25:21.222] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:25:21.222] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:25:21.729] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:25:23.237] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:25:24.048] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:25:24.860] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:25:25.673] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[17:25:25.674] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[17:25:34.982] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:25:35.799] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:25:36.611] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:25:37.425] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:25:37.425] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:25:37.933] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:25:40.275] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:25:41.095] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:25:41.906] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:25:43.083] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:25:43.892] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:25:44.705] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:25:46.349] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:25:47.159] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:25:47.971] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:27:24.189] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:27:25.002] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:27:25.814] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:27:27.439] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:27:28.256] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:27:29.079] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:27:30.105] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:27:30.922] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:27:31.735] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:27:35.796] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:27:36.608] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:27:37.422] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:27:38.234] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:27:38.235] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:27:38.743] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:27:40.254] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:27:41.062] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:27:41.875] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:27:42.687] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[17:27:42.687] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[17:27:46.913] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:27:47.722] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:27:48.530] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:27:49.343] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:27:49.344] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[17:27:49.851] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:27:53.390] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:27:54.202] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:27:55.230] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:27:56.049] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:27:56.858] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:27:57.672] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:27:57.672] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:27:58.180] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:27:59.686] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:28:00.500] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:28:01.312] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:28:02.126] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[17:28:02.126] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[17:28:57.516] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:28:58.329] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:28:59.145] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:28:59.954] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:28:59.954] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[17:29:00.462] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:29:01.282] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:29:02.093] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:29:02.905] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:29:02.905] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[17:29:03.412] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:29:04.221] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:29:05.029] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:29:05.844] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:29:05.845] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[17:29:06.858] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:29:07.670] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:29:08.482] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:29:09.548] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:29:10.359] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:29:11.171] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:29:11.982] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:29:11.982] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:29:12.492] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:29:17.311] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:29:18.125] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:29:18.937] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:29:19.751] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:29:19.751] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[17:29:20.259] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:29:22.932] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:29:24.198] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:29:25.017] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:29:25.829] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:29:26.644] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:29:26.644] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[17:29:27.152] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:29:27.967] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:29:28.782] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:29:29.594] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:29:29.595] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[17:29:31.089] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:29:31.904] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:29:32.720] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:29:33.746] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:29:34.562] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:29:35.374] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:29:36.187] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:29:36.187] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:29:36.695] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:29:37.517] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:29:38.329] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:29:39.140] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:29:39.140] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:29:39.648] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:29:40.468] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:29:43.428] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:29:44.577] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:29:45.390] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:29:46.202] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:29:47.829] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:29:48.642] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:29:49.451] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:29:50.470] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:29:51.279] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:29:52.090] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:29:52.905] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:29:52.905] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:29:53.415] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:35:00.221] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:35:01.043] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:35:01.859] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:35:03.472] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:35:04.295] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:35:05.106] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:35:05.919] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[17:35:05.920] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[17:35:07.139] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:35:07.951] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:35:08.762] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:35:36.812] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:35:37.632] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:35:38.448] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:35:39.265] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:35:39.266] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[17:35:39.789] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:35:40.606] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:35:41.424] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:35:42.232] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:35:42.232] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[17:35:43.682] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:35:44.498] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:35:45.318] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:35:46.138] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00o, ReceivedSoFar: +[17:35:46.139] [ERROR] [Board4253] Failed to receive response after 3 retries: x00o +[17:35:47.339] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:35:48.157] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:35:48.975] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:35:49.805] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:35:49.806] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:35:50.314] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:35:51.135] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:35:51.962] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:35:52.788] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:35:52.789] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:37:45.197] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:37:46.013] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:37:46.836] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:37:47.652] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:37:47.652] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_001101:ow2800326003e +[17:37:48.167] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:37:49.666] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:37:50.493] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:37:51.321] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:37:52.694] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:37:53.527] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:37:54.349] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:37:55.180] [WARNING] [Board4253] Timeout waiting for response (Retry 4/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:37:55.180] [ERROR] [Board4253] Failed to receive response after 3 retries: x00c_002101:ow2800326003e +[17:37:55.690] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:37:56.522] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:37:59.537] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:38:01.148] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:38:01.963] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:38:02.781] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_002101:ow2800326003e, ReceivedSoFar: +[17:38:04.414] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00o, ReceivedSoFar: +[17:38:05.243] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00o, ReceivedSoFar: +[17:38:06.058] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00o, ReceivedSoFar: +[17:38:07.446] [WARNING] [Board4253] Timeout waiting for response (Retry 1/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:38:08.274] [WARNING] [Board4253] Timeout waiting for response (Retry 2/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: +[17:38:09.090] [WARNING] [Board4253] Timeout waiting for response (Retry 3/3). Command: x00c_001101:ow2800326003e, ReceivedSoFar: diff --git a/leak_test_project/bin/Release/app.publish/Application Files/leak_test_project_1_0_0_16/PCI-Dask.dll.deploy b/leak_test_project/bin/Release/app.publish/Application Files/leak_test_project_1_0_0_16/PCI-Dask.dll.deploy deleted file mode 100644 index b22577f..0000000 Binary files a/leak_test_project/bin/Release/app.publish/Application Files/leak_test_project_1_0_0_16/PCI-Dask.dll.deploy and /dev/null differ diff --git a/leak_test_project/bin/Release/app.publish/Application Files/leak_test_project_1_0_0_16/leak_test_project.exe.config.deploy b/leak_test_project/bin/Release/app.publish/Application Files/leak_test_project_1_0_0_16/leak_test_project.exe.config.deploy deleted file mode 100644 index 56efbc7..0000000 --- a/leak_test_project/bin/Release/app.publish/Application Files/leak_test_project_1_0_0_16/leak_test_project.exe.config.deploy +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/leak_test_project/bin/Release/app.publish/Application Files/leak_test_project_1_0_0_16/leak_test_project.exe.deploy b/leak_test_project/bin/Release/app.publish/Application Files/leak_test_project_1_0_0_16/leak_test_project.exe.deploy deleted file mode 100644 index d1cb0bd..0000000 Binary files a/leak_test_project/bin/Release/app.publish/Application Files/leak_test_project_1_0_0_16/leak_test_project.exe.deploy and /dev/null differ diff --git a/leak_test_project/bin/Release/app.publish/Application Files/leak_test_project_1_0_0_16/leak_test_project.exe.manifest b/leak_test_project/bin/Release/app.publish/Application Files/leak_test_project_1_0_0_16/leak_test_project.exe.manifest deleted file mode 100644 index 03ce0e8..0000000 --- a/leak_test_project/bin/Release/app.publish/Application Files/leak_test_project_1_0_0_16/leak_test_project.exe.manifest +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - pEZ4izTsWD0N0FC3W6sHei9ubwH+Q1nqnSJ0w5ktN2o= - - - - - - - - - - R+Wg8QGvQVHX8T0ta/qbhH1bXkqY0fRnS3wBV3J0bN8= - - - - - - - - - pDB54gSYV5M/tu2DZtDUj13HUp3HrRLSNr97K/nGHh4= - - -+3BypFZ5fMVMM7tqK/Vhb0qhGKWR6x9nnhDuRViypA4=l9HKDkEpj4C4P8hgX+juudl4XdBkW97AKvdhQZg38x687DH3s6CcMGgqshPTYcLQBkpHBKNMMGVmhcZN9/OUPfdL2WkoGIEBxG7v7b/ec4FZoh3m8fTc1e6dNniK1A90RwLPXVBNkW2NotU1vQWVGnisAkGNQMeiT+3Mk8W3gok=tuYFpgQ5mc5y74DoHVuljBkqCkS9uu7YKD44vJG9EhrIonpNmMiwO7STg2PDbfxjEy7X17zEpz7rfw1i4zzDsUuphsWlf8IKa0pvK7QRjoUi1Kov4Ri6v1orgwbEUas61B4b4fWuhLvc/xbQh987P036LobVer7k1zqtQTVQhzU=AQABCN=COMPUTER\COMPUTER1MI2iqLoRymwscrF6To/QPA4RiJ3jK2ze0+1DcCXBZqo=mDVmhkO8ciT2Dt0KathjUGsWiGuFw08k407R+ds5XM/BgOTJz46SGEe+bFX193ClB+L3Nm+gC5CUK2aivtefsj6CBySIq85kE44IkZFPp0ijGXjUDMA68PGua45YawcjQ0+lbT1pieDyKuayPt0WVTYunVXg5RnFUtmT4ZlMM7c=tuYFpgQ5mc5y74DoHVuljBkqCkS9uu7YKD44vJG9EhrIonpNmMiwO7STg2PDbfxjEy7X17zEpz7rfw1i4zzDsUuphsWlf8IKa0pvK7QRjoUi1Kov4Ri6v1orgwbEUas61B4b4fWuhLvc/xbQh987P036LobVer7k1zqtQTVQhzU=AQABMIIB4TCCAUqgAwIBAgIQWEJoD8lqaYlP6JqlHCvs5TANBgkqhkiG9w0BAQsFADAvMS0wKwYDVQQDHiQAQwBPAE0AUABVAFQARQBSAFwAQwBPAE0AUABVAFQARQBSADEwHhcNMjYwMzI0MDIzMjE1WhcNMjcwMzI0MDgzMjE1WjAvMS0wKwYDVQQDHiQAQwBPAE0AUABVAFQARQBSAFwAQwBPAE0AUABVAFQARQBSADEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBALbmBaYEOZnOcu+A6B1bpYwZKgpEvbru2Cg+OLyRvRIayKJ6TZjIsDu0k4Njw238YxMu19e8xKc+638NYuM8w7FLqYbFpX/CCmtKbyu0EY6FItSqL+EYur9aK4MGxFGrOtQeG+H1roS73P8W0IffOz9N+i6G1Xq+5Nc6rUE1UIc1AgMBAAEwDQYJKoZIhvcNAQELBQADgYEAUsdGhPmkbh1nlC8UNtLUtmKJFrxEjinb/AyF2q0JI09sqZy0bpJXBrNGMFSgaSj5YznZJGjWH6xMCNKyy9l70dDtUs32EE3ZqA2gJxOL75BFS6cNFG0poqxd1Jwr01xm0jtjN34GTjLMWzFzTYBdtYx5w/t91i/arkapFfWyYD4= \ No newline at end of file diff --git a/leak_test_project/bin/Release/app.publish/leak_test_project.application b/leak_test_project/bin/Release/app.publish/leak_test_project.application deleted file mode 100644 index bf96da9..0000000 --- a/leak_test_project/bin/Release/app.publish/leak_test_project.application +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - A1La4KsGMV1iNK0CxRR03ShMgX8/fW+GOgv9d21XqkE= - - - -vY4yjkJ/nULviCenR6uVtUGUR+hwBc3gN5h8MT7Uogs=HLnBsRt87ox3w9aSJURYJ6Ia7a4CFjsgbE8MgngAl5S5RxvkEcgnFoc7paGHakA9eTWXUjy2ppfScWLh3TZdqNoeU6EJVQC/AwfFoL9eK9zRQYKgj6cYIwW06QQgg+T5uLvVB9CRj2nDO14tj3zsqJJ4whrs/j2bfjG0nSIsvec=tuYFpgQ5mc5y74DoHVuljBkqCkS9uu7YKD44vJG9EhrIonpNmMiwO7STg2PDbfxjEy7X17zEpz7rfw1i4zzDsUuphsWlf8IKa0pvK7QRjoUi1Kov4Ri6v1orgwbEUas61B4b4fWuhLvc/xbQh987P036LobVer7k1zqtQTVQhzU=AQABCN=COMPUTER\COMPUTER18meuhjsWFjVM2XkbCDNkqJSr8BQHhBU4VGtueZy1jJg=giByh+aFXJle8Iif2o1GWSVENDaySdFQTkrs9uiyoK6WcYRntVBVAfLeSWIVstSRiK4ltbQH0vTZDc2Kc6bDvEw7n5deWM+atUfP6X4Ih5baTiMexT+1UoZfWMpmEW6cFXXD6atDaBYTqu+p/lLQqutacu3RwzLJ59/3vsMwK0I=tuYFpgQ5mc5y74DoHVuljBkqCkS9uu7YKD44vJG9EhrIonpNmMiwO7STg2PDbfxjEy7X17zEpz7rfw1i4zzDsUuphsWlf8IKa0pvK7QRjoUi1Kov4Ri6v1orgwbEUas61B4b4fWuhLvc/xbQh987P036LobVer7k1zqtQTVQhzU=AQABMIIB4TCCAUqgAwIBAgIQWEJoD8lqaYlP6JqlHCvs5TANBgkqhkiG9w0BAQsFADAvMS0wKwYDVQQDHiQAQwBPAE0AUABVAFQARQBSAFwAQwBPAE0AUABVAFQARQBSADEwHhcNMjYwMzI0MDIzMjE1WhcNMjcwMzI0MDgzMjE1WjAvMS0wKwYDVQQDHiQAQwBPAE0AUABVAFQARQBSAFwAQwBPAE0AUABVAFQARQBSADEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBALbmBaYEOZnOcu+A6B1bpYwZKgpEvbru2Cg+OLyRvRIayKJ6TZjIsDu0k4Njw238YxMu19e8xKc+638NYuM8w7FLqYbFpX/CCmtKbyu0EY6FItSqL+EYur9aK4MGxFGrOtQeG+H1roS73P8W0IffOz9N+i6G1Xq+5Nc6rUE1UIc1AgMBAAEwDQYJKoZIhvcNAQELBQADgYEAUsdGhPmkbh1nlC8UNtLUtmKJFrxEjinb/AyF2q0JI09sqZy0bpJXBrNGMFSgaSj5YznZJGjWH6xMCNKyy9l70dDtUs32EE3ZqA2gJxOL75BFS6cNFG0poqxd1Jwr01xm0jtjN34GTjLMWzFzTYBdtYx5w/t91i/arkapFfWyYD4= \ No newline at end of file diff --git a/leak_test_project/bin/Release/app.publish/leak_test_project.exe b/leak_test_project/bin/Release/app.publish/leak_test_project.exe index d1cb0bd..14d4f29 100644 Binary files a/leak_test_project/bin/Release/app.publish/leak_test_project.exe and b/leak_test_project/bin/Release/app.publish/leak_test_project.exe differ diff --git a/leak_test_project/bin/Release/app.publish/setup.exe b/leak_test_project/bin/Release/app.publish/setup.exe deleted file mode 100644 index 30e3e2b..0000000 Binary files a/leak_test_project/bin/Release/app.publish/setup.exe and /dev/null differ diff --git a/leak_test_project/bin/Release/leak_test_project.application b/leak_test_project/bin/Release/leak_test_project.application index 936a53a..4d4a859 100644 --- a/leak_test_project/bin/Release/leak_test_project.application +++ b/leak_test_project/bin/Release/leak_test_project.application @@ -1,6 +1,6 @@  - + @@ -8,13 +8,13 @@ - + - HmFj0J/H16BLdu2v4bvNkIVYhtytj9pkGmitz3M27pw= + JHj2v9ObfsxRnMeInoMVS54QBnfDXrD+U8YIz4SZjn0= diff --git a/leak_test_project/bin/Release/leak_test_project.exe b/leak_test_project/bin/Release/leak_test_project.exe index 706e494..7a2759a 100644 Binary files a/leak_test_project/bin/Release/leak_test_project.exe and b/leak_test_project/bin/Release/leak_test_project.exe differ diff --git a/leak_test_project/bin/Release/leak_test_project.exe.manifest b/leak_test_project/bin/Release/leak_test_project.exe.manifest index c73ecac..ff538d1 100644 --- a/leak_test_project/bin/Release/leak_test_project.exe.manifest +++ b/leak_test_project/bin/Release/leak_test_project.exe.manifest @@ -1,6 +1,6 @@  - + @@ -42,14 +42,14 @@ - + - pEZ4izTsWD0N0FC3W6sHei9ubwH+Q1nqnSJ0w5ktN2o= + n0WfpmBUJxy+jy5UyVtMgokEqYG/uPakh4PhKDgvg7k= diff --git a/leak_test_project/bin/Release/leak_test_project.pdb b/leak_test_project/bin/Release/leak_test_project.pdb index 86c9ea6..ae4bdb9 100644 Binary files a/leak_test_project/bin/Release/leak_test_project.pdb and b/leak_test_project/bin/Release/leak_test_project.pdb differ diff --git a/leak_test_project/leak_test_project.csproj b/leak_test_project/leak_test_project.csproj index 05de58c..3b6f267 100644 --- a/leak_test_project/leak_test_project.csproj +++ b/leak_test_project/leak_test_project.csproj @@ -27,7 +27,8 @@ false false true - 17 + true + 19 1.0.0.%2a false true diff --git a/leak_test_project/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/leak_test_project/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache index b6d618b..c8d80e2 100644 Binary files a/leak_test_project/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache and b/leak_test_project/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/leak_test_project/obj/Release/Views/CommunicationWindow.baml b/leak_test_project/obj/Release/Views/CommunicationWindow.baml index 240c1f9..23ad6b7 100644 Binary files a/leak_test_project/obj/Release/Views/CommunicationWindow.baml and b/leak_test_project/obj/Release/Views/CommunicationWindow.baml differ diff --git a/leak_test_project/obj/Release/Views/CommunicationWindow.g.cs b/leak_test_project/obj/Release/Views/CommunicationWindow.g.cs index 247505c..c1a1885 100644 --- a/leak_test_project/obj/Release/Views/CommunicationWindow.g.cs +++ b/leak_test_project/obj/Release/Views/CommunicationWindow.g.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\Views\CommunicationWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "AF544BD3712CB303CB302F9AA68E55C5B6921446AD339B379C071FBD012AAE60" +#pragma checksum "..\..\..\Views\CommunicationWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "35CBF1849D665746CF5E7299A7C73D46247207556426E1B30BE73CAFE7C37937" //------------------------------------------------------------------------------ // // 이 코드는 도구를 사용하여 생성되었습니다. diff --git a/leak_test_project/obj/Release/Views/CommunicationWindow.g.i.cs b/leak_test_project/obj/Release/Views/CommunicationWindow.g.i.cs index 247505c..c1a1885 100644 --- a/leak_test_project/obj/Release/Views/CommunicationWindow.g.i.cs +++ b/leak_test_project/obj/Release/Views/CommunicationWindow.g.i.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\Views\CommunicationWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "AF544BD3712CB303CB302F9AA68E55C5B6921446AD339B379C071FBD012AAE60" +#pragma checksum "..\..\..\Views\CommunicationWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "35CBF1849D665746CF5E7299A7C73D46247207556426E1B30BE73CAFE7C37937" //------------------------------------------------------------------------------ // // 이 코드는 도구를 사용하여 생성되었습니다. diff --git a/leak_test_project/obj/Release/leak_test_project.application b/leak_test_project/obj/Release/leak_test_project.application index 936a53a..4d4a859 100644 --- a/leak_test_project/obj/Release/leak_test_project.application +++ b/leak_test_project/obj/Release/leak_test_project.application @@ -1,6 +1,6 @@  - + @@ -8,13 +8,13 @@ - + - HmFj0J/H16BLdu2v4bvNkIVYhtytj9pkGmitz3M27pw= + JHj2v9ObfsxRnMeInoMVS54QBnfDXrD+U8YIz4SZjn0= diff --git a/leak_test_project/obj/Release/leak_test_project.csproj.AssemblyReference.cache b/leak_test_project/obj/Release/leak_test_project.csproj.AssemblyReference.cache index 3fd9a91..942f0eb 100644 Binary files a/leak_test_project/obj/Release/leak_test_project.csproj.AssemblyReference.cache and b/leak_test_project/obj/Release/leak_test_project.csproj.AssemblyReference.cache differ diff --git a/leak_test_project/obj/Release/leak_test_project.exe b/leak_test_project/obj/Release/leak_test_project.exe index 706e494..7a2759a 100644 Binary files a/leak_test_project/obj/Release/leak_test_project.exe and b/leak_test_project/obj/Release/leak_test_project.exe differ diff --git a/leak_test_project/obj/Release/leak_test_project.exe.manifest b/leak_test_project/obj/Release/leak_test_project.exe.manifest index c73ecac..ff538d1 100644 --- a/leak_test_project/obj/Release/leak_test_project.exe.manifest +++ b/leak_test_project/obj/Release/leak_test_project.exe.manifest @@ -1,6 +1,6 @@  - + @@ -42,14 +42,14 @@ - + - pEZ4izTsWD0N0FC3W6sHei9ubwH+Q1nqnSJ0w5ktN2o= + n0WfpmBUJxy+jy5UyVtMgokEqYG/uPakh4PhKDgvg7k= diff --git a/leak_test_project/obj/Release/leak_test_project.g.resources b/leak_test_project/obj/Release/leak_test_project.g.resources index 24423a1..ecd7ba7 100644 Binary files a/leak_test_project/obj/Release/leak_test_project.g.resources and b/leak_test_project/obj/Release/leak_test_project.g.resources differ diff --git a/leak_test_project/obj/Release/leak_test_project.pdb b/leak_test_project/obj/Release/leak_test_project.pdb index 86c9ea6..ae4bdb9 100644 Binary files a/leak_test_project/obj/Release/leak_test_project.pdb and b/leak_test_project/obj/Release/leak_test_project.pdb differ