You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
251 B

#include "GCS_Rover.h"
#include "Rover.h"
bool GCS_Rover::cli_enabled() const
{
#if CLI_ENABLED == ENABLED
return rover.g.cli_enabled;
#else
return false;
#endif
}
AP_HAL::BetterStream* GCS_Rover::cliSerial() {
return rover.cliSerial;
}