From c215fcde2a7704e0f7f4e5dbe9b210dce24933ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Glozar?= Date: Fri, 2 Oct 2020 23:16:19 +0200 Subject: [PATCH] Serial: change loop delay from 20 to 5 Workaround for #5 --- src/Serial.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Serial.cpp b/src/Serial.cpp index 2a07672..a70c382 100644 --- a/src/Serial.cpp +++ b/src/Serial.cpp @@ -469,7 +469,7 @@ void CSerial::run() { if (StopThread) return; execute(); - CThread::sleep(20); + CThread::sleep(5); } }