Skip to content

Commit 30857b7

Browse files
committed
Remove unnecessary fw check
1 parent aa6dede commit 30857b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tabs/configuration.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,11 +186,11 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
186186
'MULTISHOT'
187187
];
188188

189-
if (CONFIG.flightControllerIdentifier == "BTFL" && semver.gte(CONFIG.flightControllerVersion, "3.0.0")) {
189+
if (semver.gte(CONFIG.flightControllerVersion, "3.0.0")) {
190190
escprotocols.push('BRUSHED');
191191
}
192192

193-
if (CONFIG.flightControllerIdentifier == "BTFL" && semver.gte(CONFIG.flightControllerVersion, "3.1.0")) {
193+
if (semver.gte(CONFIG.flightControllerVersion, "3.1.0")) {
194194
escprotocols.push('DSHOT');
195195
}
196196

0 commit comments

Comments
 (0)