aboutsummaryrefslogtreecommitdiff
path: root/src/modules/commander/state_machine_helper.cpp
diff options
context:
space:
mode:
authorThomas Gubler <thomasgubler@gmail.com>2014-07-23 22:58:19 +0200
committerThomas Gubler <thomasgubler@gmail.com>2014-07-23 22:58:19 +0200
commit24f380137ecb91fb9647e22e1d29c13da5fc0357 (patch)
tree8202bd0cad2410fd04d550897d9c994bd6d0bc3d /src/modules/commander/state_machine_helper.cpp
parented19faf4289eed5eeb3339e9609e976b9195020c (diff)
downloadpx4-firmware-24f380137ecb91fb9647e22e1d29c13da5fc0357.tar.gz
px4-firmware-24f380137ecb91fb9647e22e1d29c13da5fc0357.tar.bz2
px4-firmware-24f380137ecb91fb9647e22e1d29c13da5fc0357.zip
add method to block fallback to mission
failsafe navigation modes can use a flag in mission_result to tell the commander to not switch back to mission
Diffstat (limited to 'src/modules/commander/state_machine_helper.cpp')
-rw-r--r--src/modules/commander/state_machine_helper.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/commander/state_machine_helper.cpp b/src/modules/commander/state_machine_helper.cpp
index 7b26e3e8c..4e1cfb987 100644
--- a/src/modules/commander/state_machine_helper.cpp
+++ b/src/modules/commander/state_machine_helper.cpp
@@ -435,7 +435,8 @@ transition_result_t hil_state_transition(hil_state_t new_state, int status_pub,
/**
* Check failsafe and main status and set navigation status for navigator accordingly
*/
-bool set_nav_state(struct vehicle_status_s *status, const bool data_link_loss_enabled, const bool mission_finished)
+bool set_nav_state(struct vehicle_status_s *status, const bool data_link_loss_enabled, const bool mission_finished,
+ const bool stay_in_failsafe)
{
navigation_state_t nav_state_old = status->nav_state;