aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Matosov <anton.matosov@gmail.com>2015-03-03 23:23:43 -0800
committerAnton Matosov <anton.matosov@gmail.com>2015-03-06 18:57:38 -0800
commitc5bb12be3bd0d2e864a7596be14d99cb3912991d (patch)
tree6cd033c8be3e954a0303bf43a4f6d76e74934d0d
parentc76839df73b018db8435ecf011b4812561241667 (diff)
downloadpx4-firmware-c5bb12be3bd0d2e864a7596be14d99cb3912991d.tar.gz
px4-firmware-c5bb12be3bd0d2e864a7596be14d99cb3912991d.tar.bz2
px4-firmware-c5bb12be3bd0d2e864a7596be14d99cb3912991d.zip
Disabled logging of the each componsated value
-rw-r--r--src/drivers/gimbal/gimbal.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/drivers/gimbal/gimbal.cpp b/src/drivers/gimbal/gimbal.cpp
index a7e03ad39..536226a01 100644
--- a/src/drivers/gimbal/gimbal.cpp
+++ b/src/drivers/gimbal/gimbal.cpp
@@ -311,9 +311,9 @@ Gimbal::cycle()
orb_copy(ORB_ID(vehicle_command), _vehicle_command_sub, &cmd);
- debug("cmd: %d, param7 %d | param1: %8.4f param2: %8.4f", cmd.command, (int)cmd.param7, (double)cmd.param1, (double)cmd.param2);
-
VEHICLE_MOUNT_MODE mountMode = (VEHICLE_MOUNT_MODE)cmd.param7;
+ debug("cmd: %d, mountMode %d | param1: %8.4f param2: %8.4f", cmd.command, mountMode, (double)cmd.param1, (double)cmd.param2);
+
if (cmd.command == VEHICLE_CMD_DO_MOUNT_CONTROL && mountMode == VEHICLE_MOUNT_MODE_MAVLINK_TARGETING) {
/* Convert to range -1 ... 1, which corresponds to -180deg ... 180deg */
@@ -343,7 +343,7 @@ Gimbal::cycle()
struct actuator_controls_s controls;
- debug("publishing | roll: %8.4f pitch: %8.4f yaw: %8.4f", (double)roll, (double)pitch, (double)yaw);
+ // debug("publishing | roll: %8.4f pitch: %8.4f yaw: %8.4f", (double)roll, (double)pitch, (double)yaw);
/* fill in the final control values */
controls.timestamp = hrt_absolute_time();