Skip to content

Commit

Permalink
DJI / FUTABA Fast SBUS mode (200 kbaud) (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
fedorcomander authored and lichtl committed Nov 28, 2019
1 parent 0954ae7 commit 84f63dc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions content/configuration.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
<option value="17" style="display:none" data-i18n="rx-type.17" id="rxcrsf1">TBS CRSF</option>
<option value="18" style="display:none" data-i18n="rx-type.18" id="rxfport1">FrSky Fport</option>
<option value="19" style="display:none" data-i18n="rx-type.19" id="rxfport2">FrSky Fport (inverted)</option>
<option value="20" style="display:none" data-i18n="rx-type.20" id="rxsbusfast">Futaba FAST S-BUS / DJI</option>
</select>
<dl class="general_settings">
<br />
Expand Down
5 changes: 5 additions & 0 deletions content/configuration.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,11 @@ CONTENT.configuration.initialize = function (callback) {
document.getElementById('rxfport2').style.display = "inline";

}

if (data['ver'] >= 120) {
document.getElementById('rxsbusfast').style.display = "inline";

}

if (data['ver'] < 117) {
$("select[name='outputMode'] option[value='8']").remove();
Expand Down
5 changes: 2 additions & 3 deletions i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,7 @@
"rx-type.17": "TBS CRSF",
"rx-type.18": "FrSky F-Port",
"rx-type.19": "FrSky F-Port (inverted)",
"rx-type.20": "Futaba FAST S-BUS / DJI",
"rx-type.2": "PPM:Thr.,Roll,Pitch,Yaw",
"rx-type.3": "PPM:Pitch,Thr.,Roll,Yaw",
"rx-type.4": "PPM:Thr.,Pitch,Yaw,Roll",
Expand Down Expand Up @@ -424,8 +425,6 @@
"serialtype.5": "Runcam",
"serialtype.6": "VTX + ESC TLM",
"serialtype.7": "GPS",
"serialtype.8": "DJI",
"serialtype.8": "DJI MSP",
"serialtype.9": "DISABLED"


}

0 comments on commit 84f63dc

Please sign in to comment.