@@ -1123,16 +1123,16 @@ static void osdElementLinkQuality(osdElementParms_t *element)
1123
1123
if (linkQualitySource == LQ_SOURCE_RX_PROTOCOL_CRSF ) { // 0-99
1124
1124
osdLinkQuality = rxGetLinkQuality ();
1125
1125
const uint8_t osdRfMode = rxGetRfMode ();
1126
- tfp_sprintf (element -> buff , "%c% 1d:%2d " , SYM_LINK_QUALITY , osdRfMode , osdLinkQuality );
1126
+ tfp_sprintf (element -> buff , "LQ % 1d:%03d %3d " , osdRfMode , osdLinkQuality , getRssiDbm () );
1127
1127
} else if (linkQualitySource == LQ_SOURCE_RX_PROTOCOL_GHST ) { // 0-100
1128
1128
osdLinkQuality = rxGetLinkQuality ();
1129
- tfp_sprintf (element -> buff , "%c%2d " , SYM_LINK_QUALITY , osdLinkQuality );
1129
+ tfp_sprintf (element -> buff , "LQ %03d %3d " , osdLinkQuality , getRssiDbm () );
1130
1130
} else { // 0-9
1131
1131
osdLinkQuality = rxGetLinkQuality () * 10 / LINK_QUALITY_MAX_VALUE ;
1132
1132
if (osdLinkQuality >= 10 ) {
1133
1133
osdLinkQuality = 9 ;
1134
1134
}
1135
- tfp_sprintf (element -> buff , "%c% 1d" , SYM_LINK_QUALITY , osdLinkQuality );
1135
+ tfp_sprintf (element -> buff , "LQ % 1d" , osdLinkQuality );
1136
1136
}
1137
1137
}
1138
1138
#endif // USE_RX_LINK_QUALITY_INFO
@@ -1475,6 +1475,18 @@ static void osdElementWarnings(osdElementParms_t *element)
1475
1475
}
1476
1476
}
1477
1477
1478
+ static void osdElementWarnings2 (osdElementParms_t * element )
1479
+ {
1480
+ osdElementWarnings (element );
1481
+
1482
+ if (strlen (element -> buff ) == 0 ) {
1483
+ osdElementLinkQuality (element );
1484
+ }
1485
+
1486
+ strncpy (pilotConfigMutable ()-> name , element -> buff , 12 );
1487
+ return ;
1488
+ }
1489
+
1478
1490
// Define the order in which the elements are drawn.
1479
1491
// Elements positioned later in the list will overlay the earlier
1480
1492
// ones if their character positions overlap
@@ -1591,7 +1603,7 @@ const osdElementDrawFn osdElementDrawFunction[OSD_ITEM_COUNT] = {
1591
1603
[OSD_YAW_PIDS ] = osdElementPidsYaw ,
1592
1604
[OSD_POWER ] = osdElementPower ,
1593
1605
[OSD_PIDRATE_PROFILE ] = osdElementPidRateProfile ,
1594
- [OSD_WARNINGS ] = osdElementWarnings ,
1606
+ [OSD_WARNINGS ] = osdElementWarnings2 ,
1595
1607
[OSD_AVG_CELL_VOLTAGE ] = osdElementAverageCellVoltage ,
1596
1608
#ifdef USE_GPS
1597
1609
[OSD_GPS_LON ] = osdElementGpsCoordinate ,
0 commit comments