Skip to content
Snippets Groups Projects
Commit 47faaa5d authored by lovettchris's avatar lovettchris Committed by Daniel Agar
Browse files

Add loiter option to COM_OBL_RC_ACT (#7170)

parent 341bd6e8
No related branches found
No related tags found
No related merge requests found
......@@ -345,7 +345,7 @@ PARAM_DEFINE_INT32(COM_OBL_ACT, 0);
* @value 2 Manual
* @value 3 Return to Land
* @value 4 Land at current position
*
* @value 5 Loiter
* @group Mission
*/
PARAM_DEFINE_INT32(COM_OBL_RC_ACT, 0);
......
......@@ -830,6 +830,9 @@ bool set_nav_state(struct vehicle_status_s *status,
} else if (offb_loss_rc_act == 4 && status_flags->condition_global_position_valid) {
status->nav_state = vehicle_status_s::NAVIGATION_STATE_AUTO_LAND;
} else if (offb_loss_rc_act == 5 && status_flags->condition_global_position_valid) {
status->nav_state = vehicle_status_s::NAVIGATION_STATE_AUTO_LOITER;
} else if (status_flags->condition_local_altitude_valid) {
status->nav_state = vehicle_status_s::NAVIGATION_STATE_DESCEND;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment