2016-01-14 18:45:04 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 by Ian Wraith
|
|
|
|
* Copyright (C) 2015,2016 by Jonathan Naylor G4KLX
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
2016-02-15 18:45:57 +00:00
|
|
|
#include "DMRFullLC.h"
|
|
|
|
|
2016-01-14 18:45:04 +00:00
|
|
|
#include "DMRDefines.h"
|
|
|
|
#include "RS129.h"
|
2016-02-22 22:27:03 +00:00
|
|
|
#include "Utils.h"
|
2016-02-15 18:45:57 +00:00
|
|
|
#include "Log.h"
|
2016-01-14 18:45:04 +00:00
|
|
|
|
|
|
|
#include <cstdio>
|
|
|
|
#include <cassert>
|
|
|
|
|
2016-02-15 18:45:57 +00:00
|
|
|
CDMRFullLC::CDMRFullLC() :
|
2016-01-14 18:45:04 +00:00
|
|
|
m_bptc()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-02-15 18:45:57 +00:00
|
|
|
CDMRFullLC::~CDMRFullLC()
|
2016-01-14 18:45:04 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-02-15 18:45:57 +00:00
|
|
|
CDMRLC* CDMRFullLC::decode(const unsigned char* data, unsigned char type)
|
2016-01-14 18:45:04 +00:00
|
|
|
{
|
|
|
|
assert(data != NULL);
|
|
|
|
|
|
|
|
unsigned char lcData[12U];
|
|
|
|
m_bptc.decode(data, lcData);
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case DT_VOICE_LC_HEADER:
|
|
|
|
lcData[9U] ^= VOICE_LC_HEADER_CRC_MASK[0U];
|
|
|
|
lcData[10U] ^= VOICE_LC_HEADER_CRC_MASK[1U];
|
|
|
|
lcData[11U] ^= VOICE_LC_HEADER_CRC_MASK[2U];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DT_TERMINATOR_WITH_LC:
|
|
|
|
lcData[9U] ^= TERMINATOR_WITH_LC_CRC_MASK[0U];
|
|
|
|
lcData[10U] ^= TERMINATOR_WITH_LC_CRC_MASK[1U];
|
|
|
|
lcData[11U] ^= TERMINATOR_WITH_LC_CRC_MASK[2U];
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
::LogError("Unsupported LC type - %d", int(type));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-02-22 22:27:03 +00:00
|
|
|
if (!CRS129::check(lcData))
|
2016-01-14 18:45:04 +00:00
|
|
|
return NULL;
|
|
|
|
|
2016-02-15 18:45:57 +00:00
|
|
|
return new CDMRLC(lcData);
|
2016-01-14 18:45:04 +00:00
|
|
|
}
|
|
|
|
|
2016-02-15 18:45:57 +00:00
|
|
|
void CDMRFullLC::encode(const CDMRLC& lc, unsigned char* data, unsigned char type)
|
2016-01-14 18:45:04 +00:00
|
|
|
{
|
|
|
|
assert(data != NULL);
|
|
|
|
|
|
|
|
unsigned char lcData[12U];
|
|
|
|
lc.getData(lcData);
|
|
|
|
|
|
|
|
unsigned char parity[4U];
|
|
|
|
CRS129::encode(lcData, 9U, parity);
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case DT_VOICE_LC_HEADER:
|
|
|
|
lcData[9U] = parity[2U] ^ VOICE_LC_HEADER_CRC_MASK[0U];
|
|
|
|
lcData[10U] = parity[1U] ^ VOICE_LC_HEADER_CRC_MASK[1U];
|
|
|
|
lcData[11U] = parity[0U] ^ VOICE_LC_HEADER_CRC_MASK[2U];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DT_TERMINATOR_WITH_LC:
|
|
|
|
lcData[9U] = parity[2U] ^ TERMINATOR_WITH_LC_CRC_MASK[0U];
|
|
|
|
lcData[10U] = parity[1U] ^ TERMINATOR_WITH_LC_CRC_MASK[1U];
|
|
|
|
lcData[11U] = parity[0U] ^ TERMINATOR_WITH_LC_CRC_MASK[2U];
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
::LogError("Unsupported LC type - %d", int(type));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_bptc.encode(lcData, data);
|
|
|
|
}
|