Browse Source

Fixed issue when custom message set is enabled

QGC4.4
Lorenz Meier 12 years ago
parent
commit
efd916af0c
  1. 9
      src/uas/ArduPilotMegaMAV.cc

9
src/uas/ArduPilotMegaMAV.cc

@ -27,6 +27,15 @@ This file is part of the QGROUNDCONTROL project @@ -27,6 +27,15 @@ This file is part of the QGROUNDCONTROL project
*/
#include "ArduPilotMegaMAV.h"
#ifndef mavlink_mount_configure_t
#include "ardupilotmega/mavlink_msg_mount_configure.h"
#endif
#ifndef mavlink_mount_control_t
#include "ardupilotmega/mavlink_msg_mount_control.h";
#endif
ArduPilotMegaMAV::ArduPilotMegaMAV(MAVLinkProtocol* mavlink, int id) :
UAS(mavlink, id)//,
// place other initializers here

Loading…
Cancel
Save