aboutsummaryrefslogtreecommitdiff
path: root/src/modules/fw_pos_control_l1
diff options
context:
space:
mode:
authorThomas Gubler <thomasgubler@gmail.com>2013-11-06 23:24:33 +0100
committerThomas Gubler <thomasgubler@gmail.com>2013-11-06 23:24:33 +0100
commit8a62e2a4524841f9cfeec8373bd5268ace4f945b (patch)
treee8d21db885f72d2c108eda827708cd91a28043ea /src/modules/fw_pos_control_l1
parent9526f17f1613e624a23a415d03f474150ed9a273 (diff)
parentc75c5a5f30cde02002d4db16d803dc979ce8d4d5 (diff)
downloadpx4-firmware-8a62e2a4524841f9cfeec8373bd5268ace4f945b.tar.gz
px4-firmware-8a62e2a4524841f9cfeec8373bd5268ace4f945b.tar.bz2
px4-firmware-8a62e2a4524841f9cfeec8373bd5268ace4f945b.zip
Merge remote-tracking branch 'private_julian/fw_autoland_att_tecs' into fw_autoland_att_tecs
Diffstat (limited to 'src/modules/fw_pos_control_l1')
-rw-r--r--src/modules/fw_pos_control_l1/fw_pos_control_l1_main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/fw_pos_control_l1/fw_pos_control_l1_main.cpp b/src/modules/fw_pos_control_l1/fw_pos_control_l1_main.cpp
index e01b5813c..602681ce0 100644
--- a/src/modules/fw_pos_control_l1/fw_pos_control_l1_main.cpp
+++ b/src/modules/fw_pos_control_l1/fw_pos_control_l1_main.cpp
@@ -720,7 +720,7 @@ FixedwingPositionControl::control_position(const math::Vector2f &current_positio
_tecs.set_speed_weight(_parameters.speed_weight);
/* execute navigation once we have a setpoint */
- if (_setpoint_valid) {
+ if (_setpoint_valid && _control_mode.flag_control_auto_enabled) {
/* current waypoint (the one currently heading for) */
math::Vector2f curr_wp(global_triplet.current.lat / 1e7f, global_triplet.current.lon / 1e7f);