Remove rate 1/2 data regeneration.

This commit is contained in:
Jonathan Naylor 2016-03-10 12:27:25 +00:00
parent 3cd7e6a69e
commit bd338df210

View file

@ -311,14 +311,6 @@ void CDMRSlot::writeModem(unsigned char *data)
if (m_rfState != RS_RF_DATA)
return;
// Regenerate the payload if possible
if (dataType == DT_RATE_12_DATA) {
CBPTC19696 bptc;
unsigned char payload[12U];
bptc.decode(data + 2U, payload);
bptc.encode(payload, data + 2U);
}
// Regenerate the Slot Type
slotType.getData(data + 2U);
@ -952,14 +944,6 @@ void CDMRSlot::writeNetwork(const CDMRData& dmrData)
if (m_netState != RS_NET_DATA)
return;
// Regenerate the payload if possible
if (dataType == DT_RATE_12_DATA) {
CBPTC19696 bptc;
unsigned char payload[12U];
bptc.decode(data + 2U, payload);
bptc.encode(payload, data + 2U);
}
// Regenerate the Slot Type
CDMRSlotType slotType;
slotType.putData(data + 2U);