mirror of https://github.com/g4klx/MMDVMHost
Use 8 spaces as empty callsign as that is the case for the rest of the
code as well
This commit is contained in:
parent
d0f9ae0531
commit
b8a74c0340
|
|
@ -203,7 +203,7 @@ bool CDStarControl::writeModem(unsigned char *data)
|
||||||
m_rfState = RS_RF_AUDIO;
|
m_rfState = RS_RF_AUDIO;
|
||||||
|
|
||||||
if (m_netState == RS_NET_IDLE)
|
if (m_netState == RS_NET_IDLE)
|
||||||
m_display->writeDStar((char*)my1, (char*)my2, (char*)your, "R", "");
|
m_display->writeDStar((char*)my1, (char*)my2, (char*)your, "R", " ");
|
||||||
|
|
||||||
LogMessage("D-Star, received RF header from %8.8s/%4.4s to %8.8s", my1, my2, your);
|
LogMessage("D-Star, received RF header from %8.8s/%4.4s to %8.8s", my1, my2, your);
|
||||||
} else if (type == TAG_EOT) {
|
} else if (type == TAG_EOT) {
|
||||||
|
|
@ -374,7 +374,7 @@ bool CDStarControl::writeModem(unsigned char *data)
|
||||||
m_rfN = (m_rfN + 1U) % 21U;
|
m_rfN = (m_rfN + 1U) % 21U;
|
||||||
|
|
||||||
if (m_netState == RS_NET_IDLE)
|
if (m_netState == RS_NET_IDLE)
|
||||||
m_display->writeDStar((char*)my1, (char*)my2, (char*)your, "R", "");
|
m_display->writeDStar((char*)my1, (char*)my2, (char*)your, "R", " ");
|
||||||
|
|
||||||
LogMessage("D-Star, received RF late entry from %8.8s/%4.4s to %8.8s", my1, my2, your);
|
LogMessage("D-Star, received RF late entry from %8.8s/%4.4s to %8.8s", my1, my2, your);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue