Add beeper RC SMOOTHING INIT FAIL
parent
c1a188f31d
commit
097b88bf90
|
@ -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"
|
||||
},
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue