From 23079e00612bc513a3414c80ad1d0853cfa255f0 Mon Sep 17 00:00:00 2001 From: Povilas Kanapickas Date: Tue, 26 May 2020 01:51:20 +0300 Subject: [PATCH] genesys: Increase timeout in wait_until_has_valid_words() --- backend/genesys/low.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/genesys/low.cpp b/backend/genesys/low.cpp index c8855c387..b4acfa8f8 100644 --- a/backend/genesys/low.cpp +++ b/backend/genesys/low.cpp @@ -366,7 +366,7 @@ void wait_until_has_valid_words(Genesys_Device* dev) unsigned words = 0; unsigned sleep_time_ms = 10; - for (unsigned wait_ms = 0; wait_ms < 50000; wait_ms += sleep_time_ms) { + for (unsigned wait_ms = 0; wait_ms < 70000; wait_ms += sleep_time_ms) { sanei_genesys_read_valid_words(dev, &words); if (words != 0) break;