Skip to content

Commit

Permalink
Fixed msp accel scaling in flightlog parser (#651)
Browse files Browse the repository at this point in the history
fixed msp accel scaling
  • Loading branch information
flaviopinzarrone committed Dec 6, 2023
1 parent 2e2d887 commit c632ade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/flightlog_parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit c632ade

Please sign in to comment.