aboutsummaryrefslogtreecommitdiff
path: root/src/modules/vtol_att_control
diff options
context:
space:
mode:
authortumbili <bapstr@ethz.ch>2014-12-15 22:47:10 +0100
committertumbili <bapstr@ethz.ch>2014-12-15 22:47:10 +0100
commit89e2e08de0e9f76114b095782167722597f298fa (patch)
tree3fa5eebf711f77f58c43f8ef8157cfa6347289d8 /src/modules/vtol_att_control
parent736f57f436d05f3c2f10a8d7c12e54db29ed364c (diff)
downloadpx4-firmware-89e2e08de0e9f76114b095782167722597f298fa.tar.gz
px4-firmware-89e2e08de0e9f76114b095782167722597f298fa.tar.bz2
px4-firmware-89e2e08de0e9f76114b095782167722597f298fa.zip
removed white space noise
Diffstat (limited to 'src/modules/vtol_att_control')
-rw-r--r--src/modules/vtol_att_control/vtol_att_control_main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/vtol_att_control/vtol_att_control_main.cpp b/src/modules/vtol_att_control/vtol_att_control_main.cpp
index e3a2dd72e..24800cce8 100644
--- a/src/modules/vtol_att_control/vtol_att_control_main.cpp
+++ b/src/modules/vtol_att_control/vtol_att_control_main.cpp
@@ -436,7 +436,7 @@ void VtolAttitudeControl::fill_mc_att_control_output()
{
_actuators_out_0.control[0] = _actuators_mc_in.control[0];
_actuators_out_0.control[1] = _actuators_mc_in.control[1];
- _actuators_out_0.control[2] = _actuators_mc_in.control[2];
+ _actuators_out_0.control[2] = _actuators_mc_in.control[2];
_actuators_out_0.control[3] = _actuators_mc_in.control[3];
//set neutral position for elevons
_actuators_out_1.control[0] = _actuators_mc_in.control[2]; //roll elevon
@@ -457,7 +457,7 @@ void VtolAttitudeControl::fill_fw_att_control_output()
_actuators_out_1.control[0] = -_actuators_fw_in.control[0]; // roll elevon
_actuators_out_1.control[1] = _actuators_fw_in.control[1]; // pitch elevon
// unused now but still logged
- _actuators_out_1.control[2] = _actuators_fw_in.control[2]; // yaw
+ _actuators_out_1.control[2] = _actuators_fw_in.control[2]; // yaw
_actuators_out_1.control[3] = _actuators_fw_in.control[3]; // throttle
}