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

CF/BF - OSD - Cleanup the splash screen.

This commit is contained in:
Hydra 2017-03-07 22:48:01 +00:00 committed by Dominic Clifton
parent aead39c279
commit f509582e6d

View file

@ -537,12 +537,12 @@ void osdInit(displayPort_t *osdDisplayPortToUse)
} }
char string_buffer[30]; char string_buffer[30];
sprintf(string_buffer, "BF VERSION: %s", FC_VERSION_STRING); sprintf(string_buffer, "V%s", FC_VERSION_STRING);
displayWrite(osdDisplayPort, 5, 6, string_buffer); displayWrite(osdDisplayPort, 20, 6, string_buffer);
#ifdef CMS #ifdef CMS
displayWrite(osdDisplayPort, 7, 7, CMS_STARTUP_HELP_TEXT1); displayWrite(osdDisplayPort, 7, 8, CMS_STARTUP_HELP_TEXT1);
displayWrite(osdDisplayPort, 11, 8, CMS_STARTUP_HELP_TEXT2); displayWrite(osdDisplayPort, 11, 9, CMS_STARTUP_HELP_TEXT2);
displayWrite(osdDisplayPort, 11, 9, CMS_STARTUP_HELP_TEXT3); displayWrite(osdDisplayPort, 11, 10, CMS_STARTUP_HELP_TEXT3);
#endif #endif
displayResync(osdDisplayPort); displayResync(osdDisplayPort);