aboutsummaryrefslogtreecommitdiff
path: root/src/modules/mavlink/mavlink_receiver.cpp
diff options
context:
space:
mode:
authorTrent Lukaczyk <aerialhedgehog@gmail.com>2015-02-06 18:57:53 -0800
committerTrent Lukaczyk <aerialhedgehog@gmail.com>2015-02-06 18:57:53 -0800
commit99557aec5295fea5181cc968c337bf8f563f2cb4 (patch)
tree428b6359a3296bf7c576a87fe61188ded7d21f2e /src/modules/mavlink/mavlink_receiver.cpp
parent52d5d690ff1522e42df5749ab0b6bdd17ea6e0c6 (diff)
downloadpx4-firmware-99557aec5295fea5181cc968c337bf8f563f2cb4.tar.gz
px4-firmware-99557aec5295fea5181cc968c337bf8f563f2cb4.tar.bz2
px4-firmware-99557aec5295fea5181cc968c337bf8f563f2cb4.zip
revert debug items
Diffstat (limited to 'src/modules/mavlink/mavlink_receiver.cpp')
-rw-r--r--src/modules/mavlink/mavlink_receiver.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/modules/mavlink/mavlink_receiver.cpp b/src/modules/mavlink/mavlink_receiver.cpp
index 06153fdac..4d7b35f03 100644
--- a/src/modules/mavlink/mavlink_receiver.cpp
+++ b/src/modules/mavlink/mavlink_receiver.cpp
@@ -44,6 +44,7 @@
#include <nuttx/config.h>
#include <unistd.h>
#include <pthread.h>
+#include <stdio.h>
#include <math.h>
#include <stdbool.h>
#include <fcntl.h>
@@ -1458,11 +1459,6 @@ MavlinkReceiver::receive_thread(void *arg)
/* if read failed, this loop won't execute */
for (ssize_t i = 0; i < nread; i++) {
if (mavlink_parse_char(_mavlink->get_channel(), buf[i], &msg, &status)) {
-
- printf("\n");
- printf("HANDLE MESSAGE\n");
- printf("MSGID:%i\n",msg.msgid);
-
/* handle generic messages and commands */
handle_message(&msg);