Skip to content

Commit

Permalink
Merge pull request #746 from es2ast/patch-2
Browse files Browse the repository at this point in the history
  • Loading branch information
g4klx authored Apr 16, 2022
2 parents 3e8cda2 + 60b5e42 commit 33939d8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Modem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1999,6 +1999,8 @@ bool CModem::readVersion()
if (resp == RTM_OK && m_buffer[2U] == MMDVM_GET_VERSION) {
if (::memcmp(m_buffer + 4U, "MMDVM ", 6U) == 0)
m_hwType = HWT_MMDVM;
else if (::memcmp(m_buffer + 23U, "MMDVM ", 6U) == 0)
m_hwType = HWT_MMDVM;
else if (::memcmp(m_buffer + 4U, "DVMEGA", 6U) == 0)
m_hwType = HWT_DVMEGA;
else if (::memcmp(m_buffer + 4U, "ZUMspot", 7U) == 0)
Expand Down

0 comments on commit 33939d8

Please sign in to comment.