1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-19 06:15:13 +03:00

Add beeper RC SMOOTHING INIT FAIL

This commit is contained in:
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": { "beeperCAM_CONNECTION_CLOSE": {
"message": "Beep when the 5 key camera control is exited" "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": { "configuration3d": {
"message": "3D ESC/Motor Features" "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) { if (supportedConditions) {
self._beepers = []; self._beepers = [];
beepers.forEach(function (beeper) { beepers.forEach(function (beeper) {