From cb1aad049c8fb079521745ee8660dab53f41f06a Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Mon, 8 Aug 2022 10:56:08 -0400 Subject: [PATCH] increase CMD_STATUS timeout to 75 ticks this is because when modem debug is enabled some delays may be longer then 25 ticks; --- host/calibrate/HostCal.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/calibrate/HostCal.cpp b/host/calibrate/HostCal.cpp index de562fdf..c87cfa04 100644 --- a/host/calibrate/HostCal.cpp +++ b/host/calibrate/HostCal.cpp @@ -475,7 +475,7 @@ int HostCal::run() m_modem->clock(0U); timeout++; - if (timeout >= 25U) { + if (timeout >= 75U) { break; }