From abc7cba3cea723f65c445f74c693247c8823d6a4 Mon Sep 17 00:00:00 2001 From: mikeller Date: Sun, 1 Jul 2018 23:17:23 +1200 Subject: [PATCH] Fixed compilation error when building USE_GPS_RESCUE without USE_GPS. --- src/main/target/common_fc_post.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/target/common_fc_post.h b/src/main/target/common_fc_post.h index b13f008b1..06ba6eeda 100644 --- a/src/main/target/common_fc_post.h +++ b/src/main/target/common_fc_post.h @@ -126,3 +126,7 @@ #if defined(USE_MAX7456) #define USE_OSD #endif + +#if defined(USE_GPS_RESCUE) +#define USE_GPS +#endif