Don't remove OVCM bit. Only set it when configured.

This commit is contained in:
Patrick Maier 2019-11-23 11:11:53 +01:00
parent ed7f593e07
commit 9234dfcf6a
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