From f0ae1d6ecd99c67c2b8dc8cd29b7d0e71c1a15c0 Mon Sep 17 00:00:00 2001 From: Mark Haslinghuis Date: Fri, 8 Dec 2023 16:18:59 +0100 Subject: [PATCH] Update tpa_low --- js/flightlog_parser.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/js/flightlog_parser.js b/js/flightlog_parser.js index 30f26ebf..06d74187 100644 --- a/js/flightlog_parser.js +++ b/js/flightlog_parser.js @@ -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 }, @@ -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, @@ -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;