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:
commit
07f28e44d6
2 changed files with 9 additions and 2 deletions
|
@ -3661,8 +3661,10 @@
|
|||
"osdDescStatFlightDistance": {
|
||||
"message": "Total distance travelled during the flight"
|
||||
},
|
||||
"osdDescStatMaxFFT": {
|
||||
"message": "Peak FFT frequency"
|
||||
},
|
||||
|
||||
|
||||
"osdTimerSource": {
|
||||
"message": "Source:"
|
||||
},
|
||||
|
|
|
@ -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
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue