1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-24 16:55:36 +03:00

Fix non working Frsky OSD

Fix declaration

Add comment
This commit is contained in:
Asizon 2021-06-30 10:54:37 +02:00
parent 3d5a0e585c
commit 775e00e133

View file

@ -1046,6 +1046,10 @@ void osdUpdate(timeUs_t currentTimeUs)
if (!osdIsReady) {
if (!displayCheckReady(osdDisplayPort, false)) {
// Frsky osd need a display redraw after search for MAX7456 devices
if (osdDisplayPortDeviceType == OSD_DISPLAYPORT_DEVICE_FRSKYOSD) {
displayRedraw(osdDisplayPort);
}
return;
}