1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 00:05:33 +03:00

GPS - remove temporary hack for fixing the OLED page to the GPS page.

Fix incorrect flag usage.
This commit is contained in:
Dominic Clifton 2014-12-13 03:45:39 +00:00
parent 9b81dea320
commit ce6582b88a
3 changed files with 23 additions and 20 deletions

View file

@ -360,8 +360,11 @@ void init(void)
#ifdef DISPLAY
if (feature(FEATURE_DISPLAY)) {
//displayEnablePageCycling();
displayShowFixedPage();
#ifdef USE_OLED_GPS_DEBUG_PAGE_ONLY
displayShowFixedPage(PAGE_GPS);
#else
displayEnablePageCycling();
#endif
}
#endif
}