1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-19 06:15:16 +03:00

Merge pull request #3279 from mikeller/disable_gps_to_fix_build

Disabled GPS for F3 to make the build fit into flash space.
This commit is contained in:
Michael Keller 2017-06-14 13:39:22 +12:00 committed by GitHub
commit 49196c1ac9

View file

@ -106,7 +106,6 @@
#endif #endif
#if (FLASH_SIZE > 128) #if (FLASH_SIZE > 128)
#define GPS
#define CMS #define CMS
#define TELEMETRY_CRSF #define TELEMETRY_CRSF
#define TELEMETRY_IBUS #define TELEMETRY_IBUS
@ -126,5 +125,8 @@
#endif #endif
#if (FLASH_SIZE > 256) #if (FLASH_SIZE > 256)
# Temporarily moved this here because of overflowing flash size on F3
#define GPS
#define USE_UNCOMMON_MIXERS #define USE_UNCOMMON_MIXERS
#endif #endif