Add FACCH2 processing.

This commit is contained in:
Jonathan Naylor 2018-01-25 07:38:57 +00:00
parent 8f41e2d25d
commit 80d97e94ec
4 changed files with 63 additions and 25 deletions

View file

@ -180,8 +180,8 @@ void CNXDNSACCH::getData(unsigned char* data) const
unsigned int offset = 8U;
for (unsigned int i = 0U; i < 18U; i++, offset++) {
bool b = READ_BIT1(data, offset);
WRITE_BIT1(m_data, i, b);
bool b = READ_BIT1(m_data, offset);
WRITE_BIT1(data, i, b);
}
}