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