From 425e7c1e520a778f8cc896f06d0a03b8872e172a Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 28 Nov 2022 16:27:33 +0100 Subject: [PATCH] increase regular delay to up to 80 ms --- linux/devices/ploc/PlocSupvUartMan.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/devices/ploc/PlocSupvUartMan.cpp b/linux/devices/ploc/PlocSupvUartMan.cpp index f2ce3b3b..ee232f47 100644 --- a/linux/devices/ploc/PlocSupvUartMan.cpp +++ b/linux/devices/ploc/PlocSupvUartMan.cpp @@ -594,7 +594,7 @@ ReturnValue_t PlocSupvUartManager::handlePacketTransmissionNoReply( } } else { TaskFactory::delayTask(currentDelay); - if (currentDelay < 20) { + if (currentDelay < 80) { currentDelay *= 2; } }