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

Grabbed OSD on init when using the minim OSD

This commit is contained in:
Martin Budden 2016-11-16 20:46:36 +00:00
parent e4cb051b13
commit 5362709f03

View file

@ -412,6 +412,8 @@ void init(void)
displayPort_t *osdDisplayPort = max7456DisplayPortInit(&masterConfig.vcdProfile);
#else
displayPort_t *osdDisplayPort = displayPortMspInit();
// grab the OSD to stop the minim OSD writing to it autonomously
displayGrab(osdDisplayPort);
#endif
osdInit(osdDisplayPort);
}