aboutsummaryrefslogtreecommitdiff
path: root/src/modules/uORB/topics/mission_result.h
diff options
context:
space:
mode:
authorThomas Gubler <thomasgubler@gmail.com>2014-10-05 10:55:12 +0200
committerThomas Gubler <thomasgubler@gmail.com>2014-10-05 10:55:12 +0200
commit3cebfd40453cc730c298d27790b9492a64f179e0 (patch)
treed581550c02af9c682ff30a30645121073ae8befd /src/modules/uORB/topics/mission_result.h
parent70e5d4027a3b1465d5128dbf9a04cbb6545e043d (diff)
parent63b7fac10cf4d43e3df7e692336be869a4c124cc (diff)
downloadpx4-firmware-3cebfd40453cc730c298d27790b9492a64f179e0.tar.gz
px4-firmware-3cebfd40453cc730c298d27790b9492a64f179e0.tar.bz2
px4-firmware-3cebfd40453cc730c298d27790b9492a64f179e0.zip
Merge remote-tracking branch 'upstream/master' into takeoff_fix
Conflicts: src/modules/navigator/mission.cpp
Diffstat (limited to 'src/modules/uORB/topics/mission_result.h')
-rw-r--r--src/modules/uORB/topics/mission_result.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/modules/uORB/topics/mission_result.h b/src/modules/uORB/topics/mission_result.h
index beb797e62..c7d25d1f0 100644
--- a/src/modules/uORB/topics/mission_result.h
+++ b/src/modules/uORB/topics/mission_result.h
@@ -55,8 +55,11 @@ struct mission_result_s
{
unsigned seq_reached; /**< Sequence of the mission item which has been reached */
unsigned seq_current; /**< Sequence of the current mission item */
- bool reached; /**< true if mission has been reached */
- bool finished; /**< true if mission has been completed */
+ bool reached; /**< true if mission has been reached */
+ bool finished; /**< true if mission has been completed */
+ bool stay_in_failsafe; /**< true if the commander should not switch out of the failsafe mode*/
+ bool geofence_violated; /**< true if the geofence is violated */
+ bool flight_termination; /**< true if the navigator demands a flight termination from the commander app */
};
/**