Skip to content

Commit

Permalink
Fix deadband and getSerialRxTypes (#4167)
Browse files Browse the repository at this point in the history
  • Loading branch information
haslinghuis authored Sep 16, 2024
1 parent bdda6f8 commit 643b484
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/js/fc.js
Original file line number Diff line number Diff line change
Expand Up @@ -839,9 +839,9 @@ const FC = {
supportedRxTypes.push('IRC GHOST');
}
return supportedRxTypes;
} else {
return this.getSerialRxTypes();
}

return FC.getSerialRxTypes();
},

calculateHardwareName() {
Expand Down
2 changes: 1 addition & 1 deletion src/tabs/receiver.html
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@
<div class="spacer_box_title" i18n="receiverDeadband"></div>
</div>
<div class="input-helpicon-flex">
<input type="number" name="deadband" min="18100" max="32"/>
<input type="number" name="deadband" min="0" max="32"/>
<div class="helpicon cf_tip" i18n_title="receiverHelpDeadband"></div>
</div>
</div>
Expand Down

0 comments on commit 643b484

Please sign in to comment.