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

Fix disabled calibrate mag button

This commit is contained in:
Konstantin Sharlaimov (DigitalEntity) 2017-09-29 12:11:00 +10:00
parent 31806e9e91
commit 58a9468846
2 changed files with 6 additions and 1 deletions

View file

@ -1957,6 +1957,10 @@ var mspHelper = (function (gui) {
MSP.send_message(MSPCodes.MSP_BF_CONFIG, false, false, callback);
};
self.quaryFcStatus = function (callback) {
MSP.send_message(MSPCodes.MSP_STATUS_EX, false, false, callback);
};
self.loadMisc = function (callback) {
MSP.send_message(MSPCodes.MSP_MISC, false, false, callback);
};