mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
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;
|
||
|
}
|