From 54ba68685566f0f53068ea68b1b64f2ec0669e59 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Tue, 18 Jun 2019 20:36:37 +1000 Subject: [PATCH] AP_InternalError: add bit for asking for a non-existant gcs backend --- libraries/AP_InternalError/AP_InternalError.h | 1 + 1 file changed, 1 insertion(+) diff --git a/libraries/AP_InternalError/AP_InternalError.h b/libraries/AP_InternalError/AP_InternalError.h index 997439af82..f618a2a0bd 100644 --- a/libraries/AP_InternalError/AP_InternalError.h +++ b/libraries/AP_InternalError/AP_InternalError.h @@ -51,6 +51,7 @@ public: main_loop_stuck = (1U << 15), gcs_bad_missionprotocol_link= (1U << 16), bitmask_range = (1U << 17), + gcs_offset = (1U << 18), }; void error(const AP_InternalError::error_t error);