mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-05 15:38:29 -04:00
fadff24674
This also adds a patch to set up gcs channel 0 early to make BoardConfig happy
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;
|
|
}
|