mirror of https://github.com/ArduPilot/ardupilot
12 lines
160 B
C++
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;
|
||
|
}
|