mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-25 17:25:16 +03:00
Add minimum RSSI dBm OSD statistic (#1506)
Add minimum RSSI dBm OSD statistic
This commit is contained in:
commit
ff9bf5a327
2 changed files with 10 additions and 2 deletions
|
@ -1210,7 +1210,11 @@ OSD.constants = {
|
|||
TOTAL_FLIGHT_DIST: {
|
||||
name: 'TOTAL_FLIGHT_DIST',
|
||||
desc: 'osdDescStatTotalFlightDistance'
|
||||
}
|
||||
},
|
||||
MIN_RSSI_DBM: {
|
||||
name: 'MIN_RSSI_DBM',
|
||||
desc: 'osdDescStatMinRssiDbm'
|
||||
},
|
||||
},
|
||||
ALL_WARNINGS: {
|
||||
ARMING_DISABLED: {
|
||||
|
@ -1536,7 +1540,8 @@ OSD.chooseFields = function () {
|
|||
OSD.constants.STATISTIC_FIELDS = OSD.constants.STATISTIC_FIELDS.concat([
|
||||
F.TOTAL_FLIGHTS,
|
||||
F.TOTAL_FLIGHT_TIME,
|
||||
F.TOTAL_FLIGHT_DIST
|
||||
F.TOTAL_FLIGHT_DIST,
|
||||
F.MIN_RSSI_DBM
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue