@@ -352,6 +352,12 @@ var FlightLogParser = function(logData) {
352
352
throttle_limit_percent : null ,
353
353
throttle_boost : null , // throttle boost
354
354
throttle_boost_cutoff : null ,
355
+ gyro_llc_freq_hz : null ,
356
+ gyro_llc_phase : null ,
357
+ dterm_llc_freq_hz : null ,
358
+ dterm_llc_phase : null ,
359
+ pterm_llc_freq_hz : null ,
360
+ pterm_llc_phase : null ,
355
361
unknownHeaders : [ ] // Unknown Extra Headers
356
362
} ,
357
363
@@ -433,6 +439,12 @@ var FlightLogParser = function(logData) {
433
439
vbat_pid_gain : "vbat_pid_compensation" ,
434
440
yaw_accel_limit : "yawRateAccelLimit" ,
435
441
yaw_lowpass_hz : "yaw_lpf_hz" ,
442
+ gyro_llc_freq_hz : "gyro_llc_freq_hz" ,
443
+ gyro_llc_phase : "gyro_llc_phase" ,
444
+ dterm_llc_freq_hz : "dterm_llc_freq_hz" ,
445
+ dterm_llc_phase : "dterm_llc_phase" ,
446
+ pterm_llc_freq_hz : "pterm_llc_freq_hz" ,
447
+ pterm_llc_phase : "pterm_llc_phase" ,
436
448
} ,
437
449
438
450
frameTypes ,
@@ -845,6 +857,12 @@ var FlightLogParser = function(logData) {
845
857
case "gyro_lowpass_dyn_hz" :
846
858
case "gyro_lowpass_dyn_expo" :
847
859
case "dterm_lpf_dyn_expo" :
860
+ case "gyro_llc_freq_hz" :
861
+ case "gyro_llc_phase" :
862
+ case "dterm_llc_freq_hz" :
863
+ case "dterm_llc_phase" :
864
+ case "pterm_llc_freq_hz" :
865
+ case "pterm_llc_phase" :
848
866
case "dterm_lpf_dyn_hz" :
849
867
that . sysConfig [ fieldName ] = parseCommaSeparatedString ( fieldValue ) ;
850
868
break ;
0 commit comments