1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-25 17:25:16 +03:00

Add minimum RSSI dBm OSD statistic

This commit is contained in:
Miguel Angel Mulero Martinez 2019-06-28 08:44:50 +02:00
parent 26a0a50d2a
commit 95d1a7abfe
2 changed files with 10 additions and 2 deletions

View file

@ -1208,7 +1208,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: {
@ -1534,7 +1538,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
]);
}
}