Skip to content

Commit

Permalink
Update tpa_low (#677)
Browse files Browse the repository at this point in the history
  • Loading branch information
haslinghuis authored Dec 9, 2023
1 parent 4a00b12 commit 6a4f99e
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions js/flightlog_parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -353,9 +353,9 @@ var FlightLogParser = function(logData) {
throttle_boost: null, // throttle boost
throttle_boost_cutoff: null,
thrust_linear: null,
tpa_rate_lower: null,
tpa_breakpoint_lower: null,
tpa_breakpoint_lower_fade: null,
tpa_low_rate: null,
tpa_low_breakpoint: null,
tpa_low_always: null,
unknownHeaders : [] // Unknown Extra Headers
},

Expand Down Expand Up @@ -438,9 +438,9 @@ var FlightLogParser = function(logData) {
yaw_accel_limit : "yawRateAccelLimit",
yaw_lowpass_hz : "yaw_lpf_hz",
thrust_linear : "thrust_linear",
tpa_rate_lower : "tpa_rate_lower",
tpa_breakpoint_lower : "tpa_breakpoint_lower",
tpa_breakpoint_lower_fade : "tpa_breakpoint_lower_fade",
tpa_low_rate : "tpa_low_rate",
tpa_low_breakpoint : "tpa_low_breakpoint",
tpa_low_always : "tpa_low_always",
},

frameTypes,
Expand Down Expand Up @@ -854,9 +854,9 @@ var FlightLogParser = function(logData) {
case "gyro_lowpass_dyn_expo":
case "dterm_lpf_dyn_expo":
case "thrust_linear":
case "tpa_rate_lower":
case "tpa_breakpoint_lower":
case "tpa_breakpoint_lower_fade":
case "tpa_low_rate":
case "tpa_low_breakpoint":
case "tpa_low_always":
case "dterm_lpf_dyn_hz":
that.sysConfig[fieldName] = parseCommaSeparatedString(fieldValue);
break;
Expand Down

0 comments on commit 6a4f99e

Please sign in to comment.