From 278ec017fe176cd6ce84405e7540f6fce99d466e Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Thu, 25 Apr 2019 17:04:51 +0200 Subject: [PATCH] chg: increased client side timeout. Accoring to test with rdv4 addon ( @doegox ) --- uart/uart_posix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uart/uart_posix.c b/uart/uart_posix.c index f4123b6d3..462cd7320 100644 --- a/uart/uart_posix.c +++ b/uart/uart_posix.c @@ -78,7 +78,7 @@ typedef struct { // FTDI 460800 hw status -> we need 30ms struct timeval timeout = { .tv_sec = 0, // 0 second - .tv_usec = 100000 // 100 000 micro seconds + .tv_usec = 200000 // 200 000 micro seconds }; serial_port uart_open(const char *pcPortName, uint32_t speed) {