1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-24 16:55:22 +03:00

Add setting name to the MSP2_COMMON_SETTING_INFO message (#843)

This commit is contained in:
Michel Pastor 2019-10-17 23:44:40 +02:00 committed by GitHub
parent 3b9e12a15c
commit a17b8ee4d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3062,6 +3062,12 @@ var mspHelper = (function (gui) {
6: "string",
};
var setting = {};
// Discard setting name
if (semver.gte(CONFIG.apiVersion, "2.4.0")) {
result.data.readString();
}
// Discard PG ID
result.data.readU16();