Merge pull request #536 from maierp/maier_p_dont_remove_ovcm

Don't remove OVCM bit. Only set it when configured.
This commit is contained in:
Jonathan Naylor 2019-11-29 16:15:10 +00:00 committed by GitHub
commit b29e1d0050
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 4 deletions

View File

@ -168,8 +168,6 @@ void CDMRCSBK::setOVCM(bool ovcm)
if ((m_CSBKO == CSBKO_UUVREQ) || (m_CSBKO == CSBKO_UUANSRSP)) {
if (ovcm)
m_data[2U] |= 0x04U;
else
m_data[2U] &= 0xFBU;
}
}

View File

@ -193,8 +193,6 @@ void CDMRLC::setOVCM(bool ovcm)
{
if (ovcm)
m_options |= 0x04U;
else
m_options &= 0xFBU;
}
unsigned int CDMRLC::getSrcId() const