1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-19 22:35:15 +03:00

fixed required fc version

This commit is contained in:
Pawel Spychalski (DzikuVx) 2018-05-08 10:35:18 +02:00
parent 64a0f91411
commit 779e12448e

View file

@ -2525,7 +2525,7 @@ var mspHelper = (function (gui) {
};
self.loadOutputMapping = function (callback) {
if (semver.gte(CONFIG.flightControllerVersion, '1.9.1'))
if (semver.gte(CONFIG.flightControllerVersion, '2.0.0'))
MSP.send_message(MSPCodes.MSPV2_INAV_OUTPUT_MAPPING, false, false, callback);
else {
OUTPUT_MAPPING = [];