1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-25 17:25:14 +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);
};

View file

@ -17,7 +17,8 @@ TABS.setup.initialize = function (callback) {
loadChainer.setChain([
mspHelper.loadBfConfig,
mspHelper.loadMisc
mspHelper.loadMisc,
mspHelper.quaryFcStatus
]);
loadChainer.setExitPoint(load_html);
loadChainer.execute();