Skip to content

Commit 9fbc07e

Browse files
committed
Add DJI OSD blinking warnings and LQ/RSSI-dBm
1 parent 229ac66 commit 9fbc07e

File tree

1 file changed

+17
-4
lines changed

1 file changed

+17
-4
lines changed

src/main/osd/osd_elements.c

+17-4
Original file line numberDiff line numberDiff line change
@@ -1124,16 +1124,16 @@ static void osdElementLinkQuality(osdElementParms_t *element)
11241124
if (linkQualitySource == LQ_SOURCE_RX_PROTOCOL_CRSF) { // 0-99
11251125
osdLinkQuality = rxGetLinkQuality();
11261126
const uint8_t osdRfMode = rxGetRfMode();
1127-
tfp_sprintf(element->buff, "%c%1d:%2d", SYM_LINK_QUALITY, osdRfMode, osdLinkQuality);
1127+
tfp_sprintf(element->buff, "LQ %1d:%03d %3d", osdRfMode, osdLinkQuality, getRssiDbm());
11281128
} else if (linkQualitySource == LQ_SOURCE_RX_PROTOCOL_GHST) { // 0-100
11291129
osdLinkQuality = rxGetLinkQuality();
1130-
tfp_sprintf(element->buff, "%c%2d", SYM_LINK_QUALITY, osdLinkQuality);
1130+
tfp_sprintf(element->buff, "LQ %03d %3d", osdLinkQuality, getRssiDbm());
11311131
} else { // 0-9
11321132
osdLinkQuality = rxGetLinkQuality() * 10 / LINK_QUALITY_MAX_VALUE;
11331133
if (osdLinkQuality >= 10) {
11341134
osdLinkQuality = 9;
11351135
}
1136-
tfp_sprintf(element->buff, "%c%1d", SYM_LINK_QUALITY, osdLinkQuality);
1136+
tfp_sprintf(element->buff, "LQ %1d", osdLinkQuality);
11371137
}
11381138
}
11391139
#endif // USE_RX_LINK_QUALITY_INFO
@@ -1476,6 +1476,19 @@ static void osdElementWarnings(osdElementParms_t *element)
14761476
}
14771477
}
14781478

1479+
static void osdElementWarnings2(osdElementParms_t *element)
1480+
{
1481+
osdElementWarnings(element);
1482+
1483+
if (blinkState || (strlen(element->buff) == 0)) {
1484+
osdElementLinkQuality(element);
1485+
}
1486+
1487+
strncpy(pilotConfigMutable()->name, element->buff, 12);
1488+
return;
1489+
}
1490+
1491+
14791492
// Define the order in which the elements are drawn.
14801493
// Elements positioned later in the list will overlay the earlier
14811494
// ones if their character positions overlap
@@ -1592,7 +1605,7 @@ const osdElementDrawFn osdElementDrawFunction[OSD_ITEM_COUNT] = {
15921605
[OSD_YAW_PIDS] = osdElementPidsYaw,
15931606
[OSD_POWER] = osdElementPower,
15941607
[OSD_PIDRATE_PROFILE] = osdElementPidRateProfile,
1595-
[OSD_WARNINGS] = osdElementWarnings,
1608+
[OSD_WARNINGS] = osdElementWarnings2,
15961609
[OSD_AVG_CELL_VOLTAGE] = osdElementAverageCellVoltage,
15971610
#ifdef USE_GPS
15981611
[OSD_GPS_LON] = osdElementGpsCoordinate,

0 commit comments

Comments
 (0)