Merge pull request #10847 from knoopx/fix-linking-no-gps

fix: linking error when USE_GPS is undefined
This commit is contained in:
Michael Keller 2021-08-04 01:25:36 +12:00 committed by GitHub
commit a527d34409
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -227,6 +227,7 @@ static void processGhst(void)
ghstFinalize(dst);
}
#if defined(USE_GPS)
if (currentSchedule & BIT(GHST_FRAME_GPS_PRIMARY_INDEX)) {
ghstInitializeFrame(dst);
ghstFrameGpsPrimaryTelemetry(dst);
@ -238,6 +239,7 @@ static void processGhst(void)
ghstFrameGpsSecondaryTelemetry(dst);
ghstFinalize(dst);
}
#endif
if (currentSchedule & BIT(GHST_FRAME_MAGBARO_INDEX)) {
ghstInitializeFrame(dst);