mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-24 00:35:26 +03:00
Add missing support for DSHOT_BBANG arming disabled flag
This commit is contained in:
parent
8d40f35d42
commit
8ebed0a53a
2 changed files with 6 additions and 1 deletions
|
@ -918,6 +918,10 @@
|
|||
"message": "A configuration change requires a reboot",
|
||||
"description": "Message that pops up to describe the REBOOT_REQD arming disable flag"
|
||||
},
|
||||
"initialSetupArmingDisableFlagsTooltipDSHOT_BBANG": {
|
||||
"message": "Bitbanged DSHOT is not working properly and the motors can't be controlled. Likely caused by a timer conflict with other features enabled on the flight controller.",
|
||||
"description": "Message that pops up to describe the DSHOT_BBANG arming disable flag"
|
||||
},
|
||||
"initialSetupArmingDisableFlagsTooltipARM_SWITCH": {
|
||||
"message": "One of the others disarm flags is active when arming",
|
||||
"description": "Message that pops up to describe the ARM_SWITCH arming disable flag"
|
||||
|
|
|
@ -236,7 +236,8 @@ TABS.setup.initialize = function (callback) {
|
|||
}
|
||||
if (semver.gte(CONFIG.apiVersion, "1.42.0")) {
|
||||
disarmFlagElements.splice(disarmFlagElements.indexOf('THROTTLE'), 0, 'CRASH');
|
||||
disarmFlagElements = disarmFlagElements.concat(['REBOOT_REQD']);
|
||||
disarmFlagElements = disarmFlagElements.concat(['REBOOT_REQD',
|
||||
'DSHOT_BBANG']);
|
||||
}
|
||||
|
||||
// Always the latest element
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue