1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-21 23:35:22 +03:00

Merge pull request #1260 from kmitchel/fft_osd

Add Max fft to OSD stats.
This commit is contained in:
Michael Keller 2018-12-29 22:22:43 +13:00 committed by GitHub
commit 07f28e44d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 2 deletions

View file

@ -3661,8 +3661,10 @@
"osdDescStatFlightDistance": {
"message": "Total distance travelled during the flight"
},
"osdDescStatMaxFFT": {
"message": "Peak FFT frequency"
},
"osdTimerSource": {
"message": "Source:"
},

View file

@ -938,6 +938,10 @@ OSD.constants = {
FLIGHT_DISTANCE: {
name: 'FLIGHT_DISTANCE',
desc: 'osdDescStatFlightDistance'
},
MAX_FFT: {
name: 'MAX_FFT',
desc: 'osdDescStatMaxFFT'
}
},
ALL_WARNINGS: {
@ -1178,7 +1182,8 @@ OSD.chooseFields = function () {
F.MAX_ESC_TEMP,
F.MAX_ESC_RPM,
F.MIN_LINK_QUALITY,
F.FLIGHT_DISTANCE
F.FLIGHT_DISTANCE,
F.MAX_FFT
]);
}
}