Skip to content

Commit ba4cb6f

Browse files
committed
add state time to list
1 parent 82929a0 commit ba4cb6f

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

js/flightlog_fielddefs.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,7 @@ var
339339
"TIMING_ACCURACY",
340340
"RX_EXPRESSLRS_SPI",
341341
"RX_EXPRESSLRS_PHASELOCK",
342+
"DEBUG_RX_STATE_TIME,"
342343
"GPS_RESCUE_VELOCITY",
343344
]),
344345

js/flightlog_fields_presenter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1157,7 +1157,7 @@ function FlightLogFieldPresenter() {
11571157
// debug 1 = Velocity I
11581158
// debug 2 = Velocity D
11591159
case 'debug[3]': // Velocity
1160-
return (value / 100).toFixed(0) + 'm/s';
1160+
return (value / 100).toFixed(2) + 'm/s';
11611161
default:
11621162
return value.toFixed(0);
11631163
}

js/graph_config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -794,9 +794,9 @@ GraphConfig.load = function(config) {
794794
};
795795
case 'debug[3]': // Velocity cm/s
796796
return {
797-
offset: -1000,
797+
offset: 0,
798798
power: 1.0,
799-
inputRange: 1000,
799+
inputRange: 500,
800800
outputRange: 1.0,
801801
};
802802
default:

0 commit comments

Comments
 (0)