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

Add Max fft to OSD stats.

This commit is contained in:
Kenneth Mitchell 2018-12-27 19:49:27 -06:00
parent de5d9cdc50
commit 6d113066c6
2 changed files with 9 additions and 2 deletions

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
]);
}
}