1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-25 09:15:42 +03:00

cli timeout increaed to 100ms

This commit is contained in:
Pawel 2016-05-25 14:13:16 +02:00
parent a2b388d199
commit 553cf83560

View file

@ -99,7 +99,7 @@ TABS.cli.sendSlowly = function (out_arr, i, timeout_needle) {
bufView[out_arr[i].length] = 0x0D; // enter (\n)
serial.send(bufferOut);
}, timeout_needle * 25);
}, timeout_needle * 100);
};
TABS.cli.read = function (readInfo) {