diff --git a/locales/en/messages.json b/locales/en/messages.json index 22969762..0a4dcc7e 100644 --- a/locales/en/messages.json +++ b/locales/en/messages.json @@ -3961,6 +3961,12 @@ "osdWarningGpsRescueDisabled": { "message": "Warns when GPS Rescue is disabled" }, + "osdWarningRSSI": { + "message": "Warns when RSSI is below alarm setting" + }, + "osdWarningLinkQuality": { + "message": "Warns when Link Quality is below alarm setting" + }, "osdSectionHelpElements": { "message": "Enable or disable OSD elements." diff --git a/src/js/tabs/osd.js b/src/js/tabs/osd.js index 8001c20b..395a945d 100644 --- a/src/js/tabs/osd.js +++ b/src/js/tabs/osd.js @@ -1372,6 +1372,12 @@ OSD.chooseFields = function () { F.GPS_RESCUE_DISABLED ]); } + if (semver.gte(CONFIG.apiVersion, "1.42.0")) { + OSD.constants.WARNINGS = OSD.constants.WARNINGS.concat([ + F.RSSI, + F.LINK_QUALITY + ]); + } }; OSD.updateDisplaySize = function () {