ardupilot/ArduSub/GCS_Sub.cpp
Peter Barker fadff24674 Sub: create GCS subclass, use inheritted methods
This also adds a patch to set up gcs channel 0 early to make
BoardConfig happy
2017-07-07 16:18:37 +01:00

12 lines
160 B
C++

#include "GCS_Sub.h"
#include "Sub.h"
bool GCS_Sub::cli_enabled() const
{
return false;
}
AP_HAL::BetterStream* GCS_Sub::cliSerial() {
return NULL;
}