Browse Source

GCS_Mavlink.pde : mav_nav only used in legacy Mavlink.

mission-4.1.18
Jason Short 13 years ago
parent
commit
46fb3b783a
  1. 6
      ArduCopter/GCS_Mavlink.pde

6
ArduCopter/GCS_Mavlink.pde

@ -1006,7 +1006,11 @@ GCS_MAVLINK::send_text(gcs_severity severity, const prog_char_t *str) @@ -1006,7 +1006,11 @@ GCS_MAVLINK::send_text(gcs_severity severity, const prog_char_t *str)
void GCS_MAVLINK::handleMessage(mavlink_message_t* msg)
{
struct Location tell_command = {}; // command for telemetry
static uint8_t mav_nav = 255; // For setting mode (some require receipt of 2 messages...)
#if MAVLINK10 == ENABLED
#else
static uint8_t mav_nav = 255; // For setting mode (some require receipt of 2 messages...)
#endif
switch (msg->msgid) {

Loading…
Cancel
Save