Merge branch 'master' into M17

This commit is contained in:
Jonathan Naylor
2020-11-11 11:37:39 +00:00
5 changed files with 8 additions and 1 deletions

View File

@@ -1612,6 +1612,8 @@ bool CModem::readVersion()
m_hwType = HWT_MMDVM_HS;
else if (::memcmp(m_buffer + 4U, "OpenGD77_HS", 11U) == 0)
m_hwType = HWT_OPENGD77_HS;
else if (::memcmp(m_buffer + 4U, "SkyBridge", 9U) == 0)
m_hwType = HWT_SKYBRIDGE;
LogInfo("MMDVM protocol version: %u, description: %.*s", m_buffer[3U], m_length - 4U, m_buffer + 4U);
return true;