mirror of https://github.com/ArduPilot/ardupilot
AP_MSP: move from HAL_NO_GCS to HAL_GCS_ENABLED
This commit is contained in:
parent
fec9d4850d
commit
4aa6c212d2
|
@ -316,7 +316,7 @@ void AP_MSP_Telem_Backend::update_flight_mode_str(char *flight_mode_str, uint8_t
|
|||
MANU [S]
|
||||
MANU [SS]
|
||||
*/
|
||||
#ifndef HAL_NO_GCS
|
||||
#if HAL_GCS_ENABLED
|
||||
const char* simple_mode_str = gcs().simple_input_active() ? " [S]" : (gcs().supersimple_input_active() ? " [SS]" : "");
|
||||
snprintf(flight_mode_str, size, "%s%s", notify->get_flight_mode_str(), simple_mode_str);
|
||||
#else
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include <AP_Param/AP_Param.h>
|
||||
#include <GCS_MAVLink/GCS.h>
|
||||
#include <AP_OLC/AP_OLC.h>
|
||||
|
||||
#include <AP_MSP/msp.h>
|
||||
|
||||
#ifndef OSD_ENABLED
|
||||
#define OSD_ENABLED !HAL_MINIMIZE_FEATURES
|
||||
|
|
Loading…
Reference in New Issue