We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb1d400 commit 35c2ba2Copy full SHA for 35c2ba2
tabs/ports.js
@@ -33,9 +33,11 @@ TABS.ports.initialize = function (callback, scrollPosition) {
33
if (semver.gte(CONFIG.flightControllerVersion, "3.1.0")) {
34
functionRules.push({ name: 'ESC_SENSOR', groups: ['sensors'], maxPorts: 1 });
35
functionRules.push({ name: 'TBS_SMARTAUDIO', groups: ['peripherals'], maxPorts: 1 });
36
+ }
37
+
38
+ if (semver.gte(CONFIG.apiVersion, "1.28.0")) {
39
functionRules.push({ name: 'IRC_TRAMP', groups: ['peripherals'], maxPorts: 1 });
40
}
-
41
for (var i = 0; i < functionRules.length; i++) {
42
functionRules[i].displayName = chrome.i18n.getMessage('portsFunction_' + functionRules[i].name);
43
0 commit comments