From c632ade17cc6470916a3fc1ba2d00a32cc27b65e Mon Sep 17 00:00:00 2001 From: Flavio Pinzarrone <73338417+flaviopinzarrone@users.noreply.github.com> Date: Wed, 6 Dec 2023 01:30:59 +0100 Subject: [PATCH] Fixed msp accel scaling in flightlog parser (#651) fixed msp accel scaling --- js/flightlog_parser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/flightlog_parser.js b/js/flightlog_parser.js index 2908c559..30f26ebf 100644 --- a/js/flightlog_parser.js +++ b/js/flightlog_parser.js @@ -187,7 +187,7 @@ var FlightLogParser = function(logData) { vbatmaxcellvoltage:43, vbatwarningcellvoltage: 35, gyroScale: 0.0001, // Not even close to the default, but it's hardware specific so we can't do much better - acc_1G: 4096, // Ditto ^ + acc_1G: 2048, // Ditto ^ minthrottle: 1150, maxthrottle: 1850, currentMeterOffset: 0,