@@ -353,6 +353,9 @@ var FlightLogParser = function(logData) {
353
353
throttle_boost : null , // throttle boost
354
354
throttle_boost_cutoff : null ,
355
355
thrust_linear : null ,
356
+ tpa_rate_lower : null ,
357
+ tpa_breakpoint_lower : null ,
358
+ tpa_breakpoint_lower_fade : null ,
356
359
unknownHeaders : [ ] // Unknown Extra Headers
357
360
} ,
358
361
@@ -435,6 +438,9 @@ var FlightLogParser = function(logData) {
435
438
yaw_accel_limit : "yawRateAccelLimit" ,
436
439
yaw_lowpass_hz : "yaw_lpf_hz" ,
437
440
thrust_linear : "thrust_linear" ,
441
+ tpa_rate_lower : "tpa_rate_lower" ,
442
+ tpa_breakpoint_lower : "tpa_breakpoint_lower" ,
443
+ tpa_breakpoint_lower_fade : "tpa_breakpoint_lower_fade" ,
438
444
} ,
439
445
440
446
frameTypes ,
@@ -848,6 +854,9 @@ var FlightLogParser = function(logData) {
848
854
case "gyro_lowpass_dyn_expo" :
849
855
case "dterm_lpf_dyn_expo" :
850
856
case "thrust_linear" :
857
+ case "tpa_rate_lower" :
858
+ case "tpa_breakpoint_lower" :
859
+ case "tpa_breakpoint_lower_fade" :
851
860
case "dterm_lpf_dyn_hz" :
852
861
that . sysConfig [ fieldName ] = parseCommaSeparatedString ( fieldValue ) ;
853
862
break ;
0 commit comments