Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/iNavFlight/inav-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorPawel Spychalski (DzikuVx) <pspychalski@gmail.com>2019-02-11 11:25:38 +0300
committerPawel Spychalski (DzikuVx) <pspychalski@gmail.com>2019-02-11 11:25:38 +0300
commitb5122b2150762a14acc5cc18e90aa958a646b6e1 (patch)
treee096d41d247683cbcddcf35997204b958647d336 /js
parentac21b8dfe7c641e7189cb39812bbd6bd1feff078 (diff)
increase MSP timeout to 6s
Diffstat (limited to 'js')
-rw-r--r--js/serial_queue.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/serial_queue.js b/js/serial_queue.js
index bf51d778..e2732511 100644
--- a/js/serial_queue.js
+++ b/js/serial_queue.js
@@ -99,7 +99,7 @@ helper.mspQueue = (function (serial, MSP) {
privateScope.getTimeout = function (code) {
if (code == MSPCodes.MSP_SET_REBOOT || code == MSPCodes.MSP_EEPROM_WRITE) {
- return 5000;
+ return 6000;
} else {
return serial.getTimeout();
}