Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/iNavFlight/inav-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tabs
diff options
context:
space:
mode:
authorDarren Lines <darren@darrenlines.uk>2022-08-13 07:43:09 +0300
committerDarren Lines <darren@darrenlines.uk>2022-08-13 07:43:09 +0300
commit57cff5ccfe8a1a79a15d4d404016006f9a2cfd87 (patch)
treeff53ab432c76889db1f52d74b9cce2025db1c714 /tabs
parentf76e5afd20239ffb8de75d3de022771a6d375138 (diff)
Change POSHOLD to LOITER on fixed wing
Diffstat (limited to 'tabs')
-rw-r--r--tabs/auxiliary.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/tabs/auxiliary.js b/tabs/auxiliary.js
index 55dbe25f..f33f20d2 100644
--- a/tabs/auxiliary.js
+++ b/tabs/auxiliary.js
@@ -103,7 +103,9 @@ TABS.auxiliary.initialize = function (callback) {
var modeTemplate = $('#tab-auxiliary-templates .mode');
var newMode = modeTemplate.clone();
var modeName = AUX_CONFIG[modeIndex];
- // if user choose the runcam split at peripheral column, then adjust the boxname(BOXCAMERA1, BOXCAMERA2, BOXCAMERA3)
+
+ // If the runcam split peripheral is used, then adjust the boxname(BOXCAMERA1, BOXCAMERA2, BOXCAMERA3)
+ // If platform is fixed wing, rename POS HOLD to LOITER
modeName = adjustBoxNameIfPeripheralWithModeID(modeId, modeName);
$(newMode).attr('id', 'mode-' + modeIndex);