@@ -676,6 +676,20 @@ function FlightLogFieldPresenter() {
676676 'debug[2]' :'Setpoint Roll' ,
677677 'debug[3]' :'Setpoint Pitch' ,
678678 } ,
679+ 'VTX_MSP' : {
680+ 'debug[all]' : 'VTX MSP' ,
681+ 'debug[0]' : 'packetCounter' ,
682+ 'debug[1]' : 'isCrsfPortConfig' ,
683+ 'debug[2]' : 'isLowPowerDisarmed' ,
684+ 'debug[3]' : 'mspTelemetryDescriptor' ,
685+ } ,
686+ 'GPS_DOP' : {
687+ 'debug[all]' : 'GPS Dilution of Precision' ,
688+ 'debug[0]' : 'Number of Satellites' ,
689+ 'debug[1]' : 'pDOP (positional - 3D)' ,
690+ 'debug[2]' : 'hDOP (horizontal - 2D)' ,
691+ 'debug[3]' : 'vDOP (vertical - 1D)' ,
692+ } ,
679693 } ;
680694
681695 let DEBUG_FRIENDLY_FIELD_NAMES = null ;
@@ -707,20 +721,6 @@ function FlightLogFieldPresenter() {
707721 'debug[2]' :'Altitude' ,
708722 'debug[3]' :'Target altitude' ,
709723 } ;
710- DEBUG_FRIENDLY_FIELD_NAMES . VTX_MSP = {
711- 'debug[all]' : 'VTX MSP' ,
712- 'debug[0]' : 'packetCounter' ,
713- 'debug[1]' : 'isCrsfPortConfig' ,
714- 'debug[2]' : 'isLowPowerDisarmed' ,
715- 'debug[3]' : 'mspTelemetryDescriptor' ,
716- } ;
717- DEBUG_FRIENDLY_FIELD_NAMES . GPS_DOP = {
718- 'debug[all]' : 'GPS Dilution of Precision' ,
719- 'debug[0]' : 'Number of Satellites' ,
720- 'debug[1]' : 'pDOP (positional - 3D)' ,
721- 'debug[2]' : 'hDOP (horizontal - 2D)' ,
722- 'debug[3]' : 'vDOP (vertical - 1D)' ,
723- } ;
724724 } else if ( semver . gte ( firmwareVersion , '4.3.0' ) ) {
725725 DEBUG_FRIENDLY_FIELD_NAMES . FEEDFORWARD = {
726726 'debug[all]' :'Feedforward [roll]' ,
@@ -779,6 +779,13 @@ function FlightLogFieldPresenter() {
779779 'debug[2]' :'Acceleration, clipped [roll]' ,
780780 'debug[3]' :'Duplicate Counter [roll]' ,
781781 } ;
782+ DEBUG_FRIENDLY_FIELD_NAMES . FF_LIMIT = {
783+ 'debug[all]' :'Feedforward Limit [roll]' ,
784+ 'debug[0]' :'FF limit input [roll]' ,
785+ 'debug[1]' :'FF limit input [pitch]' ,
786+ 'debug[2]' :'FF limited [roll]' ,
787+ 'debug[3]' :'Not Used' ,
788+ } ;
782789 } else if ( semver . gte ( firmwareVersion , '4.1.0' ) ) {
783790 DEBUG_FRIENDLY_FIELD_NAMES . FF_INTERPOLATED = {
784791 'debug[all]' :'Feedforward [roll]' ,
@@ -1327,7 +1334,7 @@ function FlightLogFieldPresenter() {
13271334 case 'debug[2]' : // hDOP (horizontal - 2D)
13281335 case 'debug[3]' : // vDOP (vertical - 1D)
13291336 default :
1330- return ( value / 100 ) . toFixed ( 1 ) ;
1337+ return ( value / 100 ) . toFixed ( 2 ) ;
13311338 }
13321339 }
13331340 return value . toFixed ( 0 ) ;
0 commit comments