Add Max fft to OSD stats.
parent
de5d9cdc50
commit
6d113066c6
|
@ -3661,8 +3661,10 @@
|
||||||
"osdDescStatFlightDistance": {
|
"osdDescStatFlightDistance": {
|
||||||
"message": "Total distance travelled during the flight"
|
"message": "Total distance travelled during the flight"
|
||||||
},
|
},
|
||||||
|
"osdDescStatMaxFFT": {
|
||||||
|
"message": "Peak FFT frequency"
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
"osdTimerSource": {
|
"osdTimerSource": {
|
||||||
"message": "Source:"
|
"message": "Source:"
|
||||||
},
|
},
|
||||||
|
|
|
@ -938,6 +938,10 @@ OSD.constants = {
|
||||||
FLIGHT_DISTANCE: {
|
FLIGHT_DISTANCE: {
|
||||||
name: 'FLIGHT_DISTANCE',
|
name: 'FLIGHT_DISTANCE',
|
||||||
desc: 'osdDescStatFlightDistance'
|
desc: 'osdDescStatFlightDistance'
|
||||||
|
},
|
||||||
|
MAX_FFT: {
|
||||||
|
name: 'MAX_FFT',
|
||||||
|
desc: 'osdDescStatMaxFFT'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
ALL_WARNINGS: {
|
ALL_WARNINGS: {
|
||||||
|
@ -1178,7 +1182,8 @@ OSD.chooseFields = function () {
|
||||||
F.MAX_ESC_TEMP,
|
F.MAX_ESC_TEMP,
|
||||||
F.MAX_ESC_RPM,
|
F.MAX_ESC_RPM,
|
||||||
F.MIN_LINK_QUALITY,
|
F.MIN_LINK_QUALITY,
|
||||||
F.FLIGHT_DISTANCE
|
F.FLIGHT_DISTANCE,
|
||||||
|
F.MAX_FFT
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue