mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-04 15:08:28 -04:00
7774ac534e
this gives us the number of bytes available in the transmit buffer for a mavlink channel git-svn-id: https://arducopter.googlecode.com/svn/trunk@3246 f9c3cf11-9bcb-44bc-f272-b75c42450872
13 lines
331 B
C++
13 lines
331 B
C++
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: t -*-
|
|
|
|
/// @file GCS_MAVLink.cpp
|
|
/// @brief Supporting bits for MAVLink.
|
|
|
|
#include "GCS_MAVLink.h"
|
|
|
|
FastSerial *mavlink_comm_0_port;
|
|
FastSerial *mavlink_comm_1_port;
|
|
|
|
// this might need to move to the flight software
|
|
mavlink_system_t mavlink_system = {7,1,0,0};
|