@@ -1124,16 +1124,16 @@ static void osdElementLinkQuality(osdElementParms_t *element)
1124
1124
if (linkQualitySource == LQ_SOURCE_RX_PROTOCOL_CRSF ) { // 0-99
1125
1125
osdLinkQuality = rxGetLinkQuality ();
1126
1126
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 () );
1128
1128
} else if (linkQualitySource == LQ_SOURCE_RX_PROTOCOL_GHST ) { // 0-100
1129
1129
osdLinkQuality = rxGetLinkQuality ();
1130
- tfp_sprintf (element -> buff , "%c%2d " , SYM_LINK_QUALITY , osdLinkQuality );
1130
+ tfp_sprintf (element -> buff , "LQ %03d %3d " , osdLinkQuality , getRssiDbm () );
1131
1131
} else { // 0-9
1132
1132
osdLinkQuality = rxGetLinkQuality () * 10 / LINK_QUALITY_MAX_VALUE ;
1133
1133
if (osdLinkQuality >= 10 ) {
1134
1134
osdLinkQuality = 9 ;
1135
1135
}
1136
- tfp_sprintf (element -> buff , "%c% 1d" , SYM_LINK_QUALITY , osdLinkQuality );
1136
+ tfp_sprintf (element -> buff , "LQ % 1d" , osdLinkQuality );
1137
1137
}
1138
1138
}
1139
1139
#endif // USE_RX_LINK_QUALITY_INFO
@@ -1476,6 +1476,19 @@ static void osdElementWarnings(osdElementParms_t *element)
1476
1476
}
1477
1477
}
1478
1478
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
+
1479
1492
// Define the order in which the elements are drawn.
1480
1493
// Elements positioned later in the list will overlay the earlier
1481
1494
// ones if their character positions overlap
@@ -1592,7 +1605,7 @@ const osdElementDrawFn osdElementDrawFunction[OSD_ITEM_COUNT] = {
1592
1605
[OSD_YAW_PIDS ] = osdElementPidsYaw ,
1593
1606
[OSD_POWER ] = osdElementPower ,
1594
1607
[OSD_PIDRATE_PROFILE ] = osdElementPidRateProfile ,
1595
- [OSD_WARNINGS ] = osdElementWarnings ,
1608
+ [OSD_WARNINGS ] = osdElementWarnings2 ,
1596
1609
[OSD_AVG_CELL_VOLTAGE ] = osdElementAverageCellVoltage ,
1597
1610
#ifdef USE_GPS
1598
1611
[OSD_GPS_LON ] = osdElementGpsCoordinate ,
0 commit comments