You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/Cli.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -177,7 +177,7 @@ A shorter form is also supported to enable and disable functions using `serial <
177
177
| name | Empty string | Craft name |
178
178
| nav_disarm_on_landing | OFF | If set to ON, iNav disarms the FC after landing |
179
179
| nav_use_midthr_for_althold | OFF | If set to OFF, the FC remembers your throttle stick position when enabling ALTHOLD and treats it as a neutral midpoint for holding altitude |
180
-
| nav_extra_arming_safety | ON | If set to ON drone won't arm if no GPS fix and any navigation mode like RTH or POSHOLD is configured |
180
+
| nav_extra_arming_safety | ON | If set to ON drone won't arm if no GPS fix and any navigation mode like RTH or POSHOLD is configured. ALLOW_BYPASS allows the user to momentarily disable this check by holding yaw high (left stick held at the bottom right in mode 2) when switch arming is used|
181
181
| nav_user_control_mode | ATTI | Defines how Pitch/Roll input from RC receiver affects flight in POSHOLD mode: ATTI - right stick controls attitude like in ANGLE mode; CRUISE - right stick controls velocity in forward and right direction. |
182
182
| nav_position_timeout | 5 | If GPS fails wait for this much seconds before switching to emergency landing mode (0 - disable) |
183
183
| nav_wp_radius | 100 | Waypoint radius [cm]. Waypoint would be considered reached if machine is within this radius |
FIXED_WING= (1 << 4), // set when in flying_wing or airplane mode. currently used by althold selection code
97
-
ANTI_WINDUP= (1 << 5),
98
-
FLAPERON_AVAILABLE= (1 << 6),
99
-
NAV_MOTOR_STOP_OR_IDLE= (1 << 7), // navigation requests MOTOR_STOP or motor idle regardless of throttle stick, will only activate if MOTOR_STOP feature is available
100
-
COMPASS_CALIBRATED= (1 << 8),
101
-
ACCELEROMETER_CALIBRATED= (1 << 9),
102
-
PWM_DRIVER_AVAILABLE= (1 << 10),
103
-
NAV_CRUISE_BRAKING= (1 << 11),
104
-
NAV_CRUISE_BRAKING_BOOST= (1 << 12),
105
-
NAV_CRUISE_BRAKING_LOCKED= (1 << 13),
92
+
GPS_FIX_HOME= (1 << 0),
93
+
GPS_FIX= (1 << 1),
94
+
CALIBRATE_MAG= (1 << 2),
95
+
SMALL_ANGLE= (1 << 3),
96
+
FIXED_WING= (1 << 4), // set when in flying_wing or airplane mode. currently used by althold selection code
97
+
ANTI_WINDUP= (1 << 5),
98
+
FLAPERON_AVAILABLE= (1 << 6),
99
+
NAV_MOTOR_STOP_OR_IDLE= (1 << 7), // navigation requests MOTOR_STOP or motor idle regardless of throttle stick, will only activate if MOTOR_STOP feature is available
100
+
COMPASS_CALIBRATED= (1 << 8),
101
+
ACCELEROMETER_CALIBRATED= (1 << 9),
102
+
PWM_DRIVER_AVAILABLE= (1 << 10),
103
+
NAV_CRUISE_BRAKING= (1 << 11),
104
+
NAV_CRUISE_BRAKING_BOOST= (1 << 12),
105
+
NAV_CRUISE_BRAKING_LOCKED= (1 << 13),
106
+
NAV_EXTRA_ARMING_SAFETY_BYPASSED= (1 << 14), // nav_extra_arming_safey was bypassed. Keep it until power cycle.
0 commit comments