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:24:16 +0300
committerPawel Spychalski (DzikuVx) <pspychalski@gmail.com>2019-02-11 11:24:16 +0300
commitac21b8dfe7c641e7189cb39812bbd6bd1feff078 (patch)
tree0403f6a37f9227f2043682d5ba5270d0ee4a8f78 /js
parentfe64e5c3f25a26c474b81bb530a73a3f0ac88343 (diff)
lower MSP queue frequency
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 0c6b14cd..bf51d778 100644
--- a/js/serial_queue.js
+++ b/js/serial_queue.js
@@ -7,7 +7,7 @@ helper.mspQueue = (function (serial, MSP) {
var publicScope = {},
privateScope = {};
- privateScope.handlerFrequency = 100;
+ privateScope.handlerFrequency = 10;
privateScope.balancerFrequency = 20;
privateScope.loadFilter = new classes.SimpleSmoothFilter(1, 0.85);