Skip to content

Commit

Permalink
Add SERVO disable field (betaflight#800)
Browse files Browse the repository at this point in the history
  • Loading branch information
haslinghuis authored Dec 9, 2024
1 parent 0ddf6ca commit 82ddabb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/flightlog.js
Original file line number Diff line number Diff line change
Expand Up @@ -1773,6 +1773,7 @@ FlightLog.prototype.isFieldDisabled = function () {
disabledFieldsFlags.GPS = (disabledFields & (1 << 12)) !== 0;
disabledFieldsFlags.RPM = (disabledFields & (1 << 13)) !== 0;
disabledFieldsFlags.GYROUNFILT = (disabledFields & (1 << 14)) !== 0;
disabledFieldsFlags.SERVO = (disabledFields & (1 << 15)) !== 0;
}

return disabledFieldsFlags;
Expand Down

0 comments on commit 82ddabb

Please sign in to comment.