|
38 | 38 | </v-expansion-panel-header> |
39 | 39 | <v-expansion-panel-content> |
40 | 40 | <p> |
41 | | - This does a full calibration of the compasses. |
42 | | - It requires you to spin the vehicle around manually multiple times. |
43 | | - You need to move the vehicle around in all 3 axis. |
| 41 | + Perform a full calibration of the selected compass(es) by manually spinning |
| 42 | + the vehicle around multiple times, about all 3 rotation axes. |
44 | 43 | </p> |
45 | 44 | <full-compass-calibrator :compasses="compasses" /> |
46 | 45 | </v-expansion-panel-content> |
|
51 | 50 | </v-expansion-panel-header> |
52 | 51 | <v-expansion-panel-content> |
53 | 52 | <p> |
54 | | - This does a "quick" calibration of your compass. |
55 | | - You need to point your vehicle North,and then click the button. |
56 | | - This results in a much less accurate calibration, but is also much faster. |
57 | | - It can be a good starting point for calibration, followed by <b>CompassLearn</b>. |
| 53 | + Perform a quick, low-accuracy calibration of the compass(es) by pointing |
| 54 | + your vehicle North, then clicking the Calibrate button. |
| 55 | + It can be a good starting point for calibration, followed by <b>Compass Learn</b>. |
58 | 56 | </p> |
59 | 57 | <large-vehicle-compass-calibrator :compasses="compasses" /> |
60 | 58 | </v-expansion-panel-content> |
|
66 | 64 | </v-expansion-panel-header> |
67 | 65 | <v-expansion-panel-content> |
68 | 66 | <p> |
69 | | - This allows automatic "calibration" of compass offsets. You need to have a valid world position. |
70 | | - In order to use this option, click the following button and then drive the vehicle around until |
71 | | - you see the message <b>"CompassLearn: finished"</b> |
| 67 | + Automatically "learn" compass calibration offsets by driving the vehicle around until |
| 68 | + enough data has been collected, and <b>"CompassLearn: finished"</b> is displayed. |
| 69 | + A valid global region estimate is required. |
72 | 70 | </p> |
73 | 71 | <compass-learn :compasses="compasses" /> |
74 | 72 | </v-expansion-panel-content> |
|
79 | 77 | </v-expansion-panel-header> |
80 | 78 | <v-expansion-panel-content> |
81 | 79 | <p> |
82 | | - This used logs from previous flights to calibrate the compasses. |
| 80 | + Calibrate the compass(es) using a previous flight log. |
83 | 81 | This usually gives the best results. |
84 | | - While it is not currently implemented here. It can be done either in |
85 | | - <a href="https://firmware.ardupilot.org/Tools/WebTools/">Ardupilot WebTools</a> and |
86 | | - <a href="https://plotbeta.ardupilot.org/">LogViewer</a>. |
| 82 | + While it is not currently implemented here, the compass offset information can be |
| 83 | + determined in the Log Browser page. Press the green play button on a log file, |
| 84 | + click the three vertical dots in the sidebar, open the <b>Mag Fit Tool</b>, |
| 85 | + specify the general global region where the log was created, then click "Fit" |
| 86 | + for each compass you wish to calibrate. Resulting values can be copied across to |
| 87 | + the COMPASS_* autopilot parameters. |
87 | 88 | </p> |
88 | 89 | </v-expansion-panel-content> |
89 | 90 | </v-expansion-panel> |
|
122 | 123 | </v-tab> |
123 | 124 | </draggable> |
124 | 125 | <v-card outlined class="ml-auto mr-auto rounded-lg pa-3" style="max-width: 200px;"> |
125 | | - To change the order of the compasses, drag them up and down in this list using the drag handler. |
126 | | - This Operation requires an autopilot restart. |
| 126 | + Click-and-drag the dots to change the priority of the compass options. |
| 127 | + Adjusted compass priorities are applied once the autopilot restarts. |
127 | 128 | </v-card> |
128 | 129 | <v-tab-item |
129 | 130 | v-for="(compass, index) in compasses" |
|
150 | 151 | /> |
151 | 152 | </div> |
152 | 153 | <div v-else> |
153 | | - This Compass is not in use, move it higher in the list in order to be able to use it |
| 154 | + This Compass is not in use, drag it higher (by the dots) to be able to use it. |
154 | 155 | </div> |
155 | 156 | <b>External/Internal:</b> |
156 | 157 | <v-btn class="ml-8 mb-4 mt-2" fab x-small @click="openParameterEditor(compass_extern_param[index])"> |
@@ -371,7 +372,7 @@ export default Vue.extend({ |
371 | 372 | calibration: CalibrationType.FULL_NO_WMM, |
372 | 373 | color: 'var(--v-warning-darken1)', |
373 | 374 | alert: 'warning', |
374 | | - description: 'Calibrated, but without a known (detected or specified) global position, ' |
| 375 | + description: 'Calibrated, but without a known (detected or specified) global region, ' |
375 | 376 | + 'so no corrections were applied from the internal World Magnetic Model (WMM). ' |
376 | 377 | + 'Consider retrying with a valid position to improve compass performance.', |
377 | 378 | calibration_short: 'Calibrated (No WMM)', |
|
0 commit comments