mirror of
https://github.com/iNavFlight/inav-configurator.git
synced 2025-07-25 09:15:42 +03:00
Fix bug in MSP_ACTIVEBOXES decoding
In JS `(1<<32) == 1` so it was causing an issue when the FC was advertising more than 32 mode boxes
This commit is contained in:
parent
83bd7ac67f
commit
1b453762a1
6 changed files with 37 additions and 37 deletions
|
@ -50,7 +50,7 @@ TABS.motors.initialize = function (callback) {
|
|||
}
|
||||
|
||||
function update_arm_status() {
|
||||
self.armed = bit_check(CONFIG.mode, 0);
|
||||
self.armed = FC.isModeEnabled('ARM');
|
||||
}
|
||||
|
||||
function initSensorData() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue