Add beeper RC SMOOTHING INIT FAIL

10.5.x-maintenance
Miguel Angel Mulero Martinez 2019-01-15 15:24:26 +01:00
parent c1a188f31d
commit 097b88bf90
2 changed files with 9 additions and 0 deletions

View File

@ -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"
},

View File

@ -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) {