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:
commit
49196c1ac9
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue