Change the displays to show the DG-ID instead of the TO field for YSF.

This commit is contained in:
Jonathan Naylor
2020-08-09 19:23:18 +01:00
parent f070410f7e
commit c7fbeecc50
10 changed files with 45 additions and 45 deletions

View File

@@ -436,7 +436,6 @@ void COLED::clearDMRInt(unsigned int slotNo)
void COLED::writeFusionInt(const char* source, const char* dest, const char* type, const char* origin)
{
m_mode = MODE_YSF;
m_display.clearDisplay();
@@ -446,11 +445,11 @@ void COLED::writeFusionInt(const char* source, const char* dest, const char* typ
m_display.printf("%s %.10s", type, source);
m_display.setCursor(0,OLED_LINE5);
m_display.printf(" %.10s", dest);
m_display.printf(" DG-ID %u", dgid);
OLED_statusbar();
m_display.display();
m_display.display();
}
void COLED::clearFusionInt()