diff --git a/locales/en/messages.json b/locales/en/messages.json index 9e1be7fc..430b8b60 100644 --- a/locales/en/messages.json +++ b/locales/en/messages.json @@ -1096,6 +1096,9 @@ "beeperCAM_CONNECTION_CLOSE": { "message": "Beep when the 5 key camera control is exited" }, + "beeperRC_SMOOTHING_INIT_FAIL": { + "message": "Beep when armed and rc smoothing has not initialized filters" + }, "configuration3d": { "message": "3D ESC/Motor Features" }, diff --git a/src/js/Beepers.js b/src/js/Beepers.js index c58e4447..19f1f664 100644 --- a/src/js/Beepers.js +++ b/src/js/Beepers.js @@ -33,6 +33,12 @@ var Beepers = function (config, supportedConditions) { ); } + if (semver.gte(config.apiVersion, "1.39.0")) { + beepers.push( + {bit: 22, name: 'RC_SMOOTHING_INIT_FAIL', visible: true}, + ); + } + if (supportedConditions) { self._beepers = []; beepers.forEach(function (beeper) {