op25/op25/gr-op25_repeater/lib/rx_sync.cc

824 lines
24 KiB
C++

// P25 Decoder (C) Copyright 2013, 2014, 2015, 2016, 2017 Max H. Parke KA1RBI
//
// This file is part of OP25
//
// OP25 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 3, or (at your option)
// any later version.
//
// OP25 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 OP25; see the file COPYING. If not, write to the Free
// Software Foundation, Inc., 51 Franklin Street, Boston, MA
// 02110-1301, USA.
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <string>
#include <iostream>
#include <deque>
#include <assert.h>
#include <errno.h>
#include <unistd.h>
#include "rx_sync.h"
#include "bit_utils.h"
#include "check_frame_sync.h"
#include "p25p2_vf.h"
#include "mbelib.h"
#include "ambe.h"
#include "rs.h"
#include "crc16.h"
#include "ysf_const.h"
#include "dmr_const.h"
#include "p25_frame.h"
#include "op25_imbe_frame.h"
#include "software_imbe_decoder.h"
#include "op25_audio.h"
namespace gr{
namespace op25_repeater{
void rx_sync::cbuf_insert(const uint8_t c) {
d_cbuf[d_cbuf_idx] = c;
d_cbuf[d_cbuf_idx + CBUF_SIZE] = c;
d_cbuf_idx = (d_cbuf_idx + 1) % CBUF_SIZE;
}
void rx_sync::sync_reset(void) {
d_threshold = 0;
d_shift_reg = 0;
d_unmute_until[0] = 0;
d_unmute_until[1] = 0;
}
static inline void debug_dump(const char* s, const uint8_t p[], int l) {
char buf[64];
for (int i=0; i<l; i++) {
if (i*2+3 >= sizeof(buf))
break;
sprintf(buf+i*2, "%02x", p[i]);
}
fprintf(stderr, "%s: %s\n", s, buf);
}
static inline void cfill(uint8_t result[], const uint8_t src[], int len) {
for (int i=0; i<len; i++)
result[i] = load_i(src+i*8, 8);
}
static int ysf_decode_fich(const uint8_t src[100], uint8_t dest[32]) { // input is 100 dibits, result is 32 bits
// return -1 on decode error, else 0
static const int pc[] = {0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1};
uint8_t buf[100];
for (int i=0; i<20; i++) {
for (int j=0; j<5; j++) {
buf[j+i*5] = src[i+j*20];
}
}
uint8_t dr = 0;
uint8_t ans[100];
/* fake trellis decode */
/* TODO: make less fake */
for (int i=0; i<100; i++) {
uint8_t sym = buf[i];
uint8_t d0 = ((dr << 1) | 0) & 0x1f;
uint8_t r0 = (pc[ d0 & 0x19 ] << 1) + pc[ d0 & 0x17];
uint8_t d1 = ((dr << 1) | 1) & 0x1f;
uint8_t r1 = (pc[ d1 & 0x19 ] << 1) + pc[ d1 & 0x17];
if (sym == r0) {
ans[i] = 0;
dr = d0;
} else if (sym == r1) {
ans[i] = 1;
dr = d1;
} else {
return -1; /* decode error */
}
}
uint8_t fich_bits[12*4];
store_i(gly24128Dec(load_i(ans+24*0, 24)), fich_bits+12*0, 12);
store_i(gly24128Dec(load_i(ans+24*1, 24)), fich_bits+12*1, 12);
store_i(gly24128Dec(load_i(ans+24*2, 24)), fich_bits+12*2, 12);
store_i(gly24128Dec(load_i(ans+24*3, 24)), fich_bits+12*3, 12);
uint16_t crc_result = crc16(fich_bits, 48);
if (crc_result != 0)
return -1; // crc failure
memcpy(dest, fich_bits, 32);
return 0;
}
void rx_sync::ysf_sync(const uint8_t dibitbuf[], bool& ysf_fullrate, bool& unmute) {
uint8_t fich_buf[32];
int rc = ysf_decode_fich(dibitbuf+20, fich_buf);
if (rc == 0) {
uint32_t fich = load_i(fich_buf, 32);
uint32_t dt = (fich >> 8) & 3;
d_shift_reg = dt;
}
switch(d_shift_reg) {
case 0: // voice/data mode 1
unmute = false;
break;
case 1: // data mode
unmute = false;
break;
case 2: // voice/data mode 2
unmute = true;
ysf_fullrate = false;
break;
case 3: // voice fr mode
unmute = true;
ysf_fullrate = true;
break;
}
if (d_debug > 5 && !unmute)
fprintf(stderr, "ysf_sync: muting audio: dt: %d, rc: %d\n", d_shift_reg, rc);
}
static int decode_embedded(uint8_t result_lc[72], const uint8_t src[32*4], int srclen) {
// return code < 0 indicates decode failure
static const int lengths[] = {11, 11, 10, 10, 10, 10, 10};
int s_index = 0;
uint8_t decode[16*8];
uint8_t decode_lc[72+5];
int srcp = 0;
if (srclen != 32*4)
return -4;
for (int i=0; i<16; i++) {
for (int j=0; j<8; j++){
decode[i+16*j] = src[srcp++];
}
}
for (int i=0; i<7; i++) {
int v = load_i(&decode[16*i], 16);
int rc = hamming_16_11_decode(v);
if (rc < 0)
return rc;
store_i(rc, &decode_lc[11*i], 11);
memcpy(&result_lc[s_index], &decode_lc[11*i], lengths[i]);
s_index += lengths[i];
}
uint16_t r_csum = 0;
for (int i=0; i<5; i++) {
r_csum <<= 1;
r_csum |= decode_lc[(i+2)*11+10] & 1;
}
uint16_t c_csum = 0;
for (int i=0; i<9; i++) {
c_csum += load_i(&result_lc[i*8], 8);
}
c_csum = c_csum % 31;
if (r_csum != c_csum)
return -3;
return 0; // OK return
}
static void init_xlist(int * lp) {
for (int i=0; i < XLIST_SIZE; i++) {
lp[i] = -1;
}
}
static bool find_xlist(const int grp, const int * lp) {
for (int i=0; i < XLIST_SIZE; i++) {
if (lp[i] == grp && grp > 0)
return true;
}
return false;
}
static bool add_xlist(const int grp, int * lp) {
// returns false if failed (grp bad, dup or list full), otherwise true
for (int i=0; i < XLIST_SIZE; i++) {
if (lp[i] == grp || grp < 1)
return false; // dup or group invalid
if (lp[i] == -1) {
lp[i] = grp;
return true;
}
}
return false;
}
static int count_xlist(const int * lp) {
int res=0;
for (int i=0; i < XLIST_SIZE; i++) {
if (lp[i] > 0)
res += 1;
}
return res;
}
void rx_sync::insert_whitelist(int grpaddr) {
bool rc = add_xlist(grpaddr, d_whitelist);
if (rc == false)
fprintf(stderr, "insert_whitelist failed for grp=%d- dup or list full\n", grpaddr);
else if (d_debug)
fprintf(stderr, "insert_whitelist complete for grp=%d\n", grpaddr);
}
void rx_sync::insert_blacklist(int grpaddr) {
bool rc = add_xlist(grpaddr, d_blacklist);
if (rc == false)
fprintf(stderr, "insert_blacklist failed for grp=%d- dup or list full\n", grpaddr);
else if (d_debug)
fprintf(stderr, "insert_blacklist complete for grp=%d\n", grpaddr);
}
void rx_sync::dmr_sync(const uint8_t bitbuf[], int& current_slot, bool& unmute) {
static const int slot_ids[] = {0, 1, 0, 0, 1, 1, 0, 1};
static const uint32_t BURST_SZ = 32; // embedded burst size (bits)
int tact;
int chan;
int fstype;
uint8_t tactbuf[sizeof(cach_tact_bits)];
uint8_t lc72[72];
for (size_t i=0; i<sizeof(cach_tact_bits); i++)
tactbuf[i] = bitbuf[cach_tact_bits[i]];
tact = hamming_7_4_decode[load_i(tactbuf, 7)];
chan = (tact>>2) & 1;
d_shift_reg = (d_shift_reg << 1) + chan;
current_slot = slot_ids[d_shift_reg & 7];
if (d_groupid_valid[current_slot] > 0)
d_groupid_valid[current_slot] -= 1;
uint64_t sync = load_reg64(bitbuf + (MODE_DATA[RX_TYPE_DMR].sync_offset << 1), MODE_DATA[RX_TYPE_DMR].sync_len);
if (check_frame_sync(DMR_VOICE_SYNC_MAGIC ^ sync, d_threshold, MODE_DATA[RX_TYPE_DMR].sync_len))
fstype = 1;
else if (check_frame_sync(DMR_IDLE_SYNC_MAGIC ^ sync, d_threshold, MODE_DATA[RX_TYPE_DMR].sync_len))
fstype = 2;
else
fstype = 0;
if (fstype > 0)
d_expires = d_symbol_count + MODE_DATA[d_current_type].expiration;
if (fstype == 1) {
if (!d_unmute_until[current_slot] && d_debug > 5)
fprintf(stderr, "%d unmute slot %d\n", d_symbol_count, current_slot);
d_unmute_until[current_slot] = d_symbol_count + MODE_DATA[d_current_type].expiration;
} else if (fstype == 2) {
if (d_unmute_until[current_slot] && d_debug > 5)
fprintf(stderr, "%d mute slot %d\n", d_symbol_count, current_slot);
d_unmute_until[current_slot] = 0;
}
if (d_unmute_until[current_slot] <= d_symbol_count) {
d_unmute_until[current_slot] = 0;
}
unmute = d_unmute_until[current_slot] > 0;
if (fstype == 0) {
uint16_t emb = (load_i(bitbuf+132, 8) << 8) + load_i(bitbuf+172, 8);
int emb_decode = hamming_16_7_decode(emb);
if (emb_decode >= 0) {
uint8_t cc = emb_decode >> 3;
uint8_t pi = (emb_decode >> 2) & 1;
uint8_t lcss = emb_decode & 3;
switch (lcss) {
case 0:
break;
case 1:
memcpy(d_burstb[current_slot], bitbuf+140, BURST_SZ);
d_burstl[current_slot] = BURST_SZ;
break;
case 2:
if (d_burstl[current_slot] && d_burstl[current_slot]+BURST_SZ <= sizeof(d_burstb)) {
memcpy(d_burstb[current_slot] + d_burstl[current_slot], bitbuf+140, BURST_SZ);
d_burstl[current_slot] += BURST_SZ;
int rc = decode_embedded(lc72, d_burstb[current_slot], d_burstl[current_slot]);
if (rc >= 0) {
int opcode = load_i(lc72+2, 6);
if (opcode == 0) { // group voice channel user
int grpaddr = load_i(lc72+24, 24);
if (grpaddr > 0) {
d_groupid[current_slot] = grpaddr;
d_groupid_valid[current_slot] = 20;
}
}
} else {
if (d_debug)
fprintf(stderr, "decode_embedded failed, code %d\n", rc);
}
}
d_burstl[current_slot] = 0;
break;
case 3:
if (d_burstl[current_slot] && d_burstl[current_slot]+BURST_SZ <= sizeof(d_burstb)) {
memcpy(d_burstb[current_slot] + d_burstl[current_slot], bitbuf+140, BURST_SZ);
d_burstl[current_slot] += BURST_SZ;
} else {
d_burstl[current_slot] = 0;
}
break;
}
} else {
d_burstl[current_slot] = 0;
}
}
if (unmute && d_groupid_valid[current_slot] > 0) {
if (count_xlist(d_whitelist) > 0 && !find_xlist(d_groupid[current_slot], d_whitelist)) {
if (d_debug)
fprintf(stderr, "%d group %d not in whitelist, muting slot %d\n", d_symbol_count, d_groupid[current_slot], current_slot);
unmute = 0;
if (d_unmute_until[current_slot] && d_debug > 5)
fprintf(stderr, "%d mute slot %d\n", d_symbol_count, current_slot);
d_unmute_until[current_slot] = 0;
}
if (count_xlist(d_blacklist) > 0 && find_xlist(d_groupid[current_slot], d_blacklist)) {
if (d_debug)
fprintf(stderr, "group %d in blacklist, muting slot %d\n", d_groupid[current_slot], current_slot);
unmute = 0;
if (d_unmute_until[current_slot] && d_debug > 5)
fprintf(stderr, "%d mute slot %d\n", d_symbol_count, current_slot);
d_unmute_until[current_slot] = 0;
}
}
}
rx_sync::rx_sync(const char * options, int debug, gr::msg_queue::sptr queue, int msgq_id) : // constructor
d_symbol_count(0),
d_sync_reg(0),
d_cbuf_idx(0),
d_current_type(RX_TYPE_NONE),
d_rx_count(0),
d_expires(0),
d_stereo(false),
d_debug(debug),
d_audio(options, debug),
d_msg_queue(queue),
d_previous_nxdn_sync(0),
d_previous_nxdn_sr_structure(-1),
d_previous_nxdn_sr_ran(-1),
d_msgq_id(msgq_id)
{
mbe_initMbeParms (&cur_mp[0], &prev_mp[0], &enh_mp[0]);
mbe_initMbeParms (&cur_mp[1], &prev_mp[1], &enh_mp[1]);
sync_reset();
d_burstl[0] = 0;
d_burstl[1] = 0;
init_xlist(d_whitelist);
init_xlist(d_blacklist);
d_groupid[0] = 0;
d_groupid_valid[0] = 0;
d_groupid[1] = 0;
d_groupid_valid[1] = 0;
}
rx_sync::~rx_sync() // destructor
{
}
void rx_sync::codeword(const uint8_t* cw, const enum codeword_types codeword_type, int slot_id) {
static const int x=4;
static const int y=26;
static const uint8_t majority[8] = {0,0,0,1,0,1,1,1};
int b[9];
uint8_t buf[4*26];
uint8_t tmp_codeword [144];
uint32_t E0, ET;
uint32_t u[8];
bool do_fullrate = false;
bool do_silence = false;
voice_codeword fullrate_cw(voice_codeword_sz);
switch(codeword_type) {
case CODEWORD_DMR:
case CODEWORD_NXDN_EHR: // halfrate
interleaver.process_vcw(cw, b);
if (b[0] < 120)
mbe_dequantizeAmbe2250Parms(&cur_mp[slot_id], &prev_mp[slot_id], b);
break;
case CODEWORD_DSTAR:
interleaver.decode_dstar(cw, b, false);
if (b[0] < 120)
mbe_dequantizeAmbe2400Parms(&cur_mp[slot_id], &prev_mp[slot_id], b);
break;
case CODEWORD_YSF_HALFRATE: // 104 bits
for (int i=0; i<x; i++) {
for (int j=0; j<y; j++)
buf[j+i*y] = cw[i+j*x];
}
ysf_scramble(buf, 104);
for (int i=0; i<27; i++)
tmp_codeword[i] = majority[ (buf[0+i*3] << 2) | (buf[1+i*3] << 1) | buf[2+i*3] ];
memcpy(tmp_codeword+27, buf+81, 22);
decode_49bit(b, tmp_codeword);
if (b[0] < 120)
mbe_dequantizeAmbe2250Parms(&cur_mp[slot_id], &prev_mp[slot_id], b);
break;
case CODEWORD_P25P2:
break;
case CODEWORD_P25P1: // 144 bits
for (int i=0; i<144; i++)
fullrate_cw[i] = cw[i];
imbe_header_decode(fullrate_cw, u[0], u[1], u[2], u[3], u[4], u[5], u[6], u[7], E0, ET);
do_fullrate = true;
break;
case CODEWORD_YSF_FULLRATE: // 144 bits
for (int i=0; i<144; i++)
fullrate_cw[i] = cw[ysf_permutation[i]];
imbe_header_decode(fullrate_cw, u[0], u[1], u[2], u[3], u[4], u[5], u[6], u[7], E0, ET);
do_fullrate = true;
break;
}
mbe_moveMbeParms (&cur_mp[slot_id], &prev_mp[slot_id]);
if (do_fullrate) {
d_software_decoder[slot_id].decode(fullrate_cw);
} else { /* halfrate */
if (b[0] >= 120) {
do_silence = true;
} else {
d_software_decoder[slot_id].decode_tap(cur_mp[slot_id].L, 0, cur_mp[slot_id].w0, &cur_mp[slot_id].Vl[1], &cur_mp[slot_id].Ml[1]);
}
}
audio_samples *samples = d_software_decoder[slot_id].audio();
float snd;
int16_t samp_buf[NSAMP_OUTPUT];
for (int i=0; i < NSAMP_OUTPUT; i++) {
if ((!do_silence) && samples->size() > 0) {
snd = samples->front();
samples->pop_front();
} else {
snd = 0;
}
if (do_fullrate)
snd *= 32768.0;
samp_buf[i] = snd;
}
output(samp_buf, slot_id);
}
void rx_sync::output(int16_t * samp_buf, const ssize_t slot_id) {
if (!d_stereo) {
d_audio.send_audio_channel(samp_buf, NSAMP_OUTPUT * sizeof(int16_t), slot_id);
return;
}
}
bool rx_sync::nxdn_gate(enum rx_types sync_detected) {
// if nxdn sync is detected while another type is already active,
// we require two consecutive nxdn frames before allowing change to new type
// (to try to prevent falsing due to shortened nxdn sync signature size)
// returns false if sync is either not present or should be ignored
static const int NXDN_FRSIZE = 192;
bool rc;
if (sync_detected == RX_TYPE_NONE)
return false;
if (sync_detected == d_current_type)
return true;
if (sync_detected != RX_TYPE_NXDN)
return true;
if (d_current_type == RX_TYPE_NONE)
return true;
// trying to switch from another type to nxdn
if (d_symbol_count - d_previous_nxdn_sync != NXDN_FRSIZE) {
if (d_debug)
fprintf(stderr, "ignoring NXDN frame sync in state %s, count %d, symbol %d\n", MODE_DATA[d_current_type].type, d_symbol_count - d_previous_nxdn_sync, d_symbol_count);
rc = false;
} else {
if (d_debug)
fprintf(stderr, "changing to NXDN from state %s, symbol %d\n", MODE_DATA[d_current_type].type, d_symbol_count);
rc = true;
}
d_previous_nxdn_sync = d_symbol_count;
return rc;
}
void rx_sync::rx_sym(const uint8_t sym)
{
uint8_t bitbuf[864*2];
enum rx_types sync_detected = RX_TYPE_NONE;
int current_slot;
bool unmute;
uint8_t tmpcw[144];
bool ysf_fullrate;
d_symbol_count ++;
d_sync_reg = (d_sync_reg << 2) | (sym & 3);
for (int i = 1; i < RX_N_TYPES; i++) {
if (check_frame_sync(MODE_DATA[i].sync ^ d_sync_reg, (i == d_current_type) ? d_threshold : 0, MODE_DATA[i].sync_len)) {
sync_detected = (enum rx_types) i;
break;
}
}
cbuf_insert(sym);
if (d_current_type == RX_TYPE_NONE && sync_detected == RX_TYPE_NONE)
return;
d_rx_count ++;
if (d_debug && sync_detected == RX_TYPE_NONE && d_rx_count == MODE_DATA[d_current_type].sync_offset + (MODE_DATA[d_current_type].sync_len >> 1))
fprintf(stderr, "missing expected %s sync, symbol %d\n", MODE_DATA[d_current_type].type, d_symbol_count);
if (nxdn_gate(sync_detected)) {
if (d_current_type != sync_detected) {
d_current_type = sync_detected;
d_expires = d_symbol_count + MODE_DATA[d_current_type].expiration;
d_rx_count = 0;
}
if (d_rx_count != MODE_DATA[d_current_type].sync_offset + (MODE_DATA[d_current_type].sync_len >> 1)) {
if (d_debug)
fprintf(stderr, "resync at count %d symbol %d for protocol %s\n", d_rx_count, d_symbol_count, MODE_DATA[d_current_type].type);
sync_reset();
d_rx_count = MODE_DATA[d_current_type].sync_offset + (MODE_DATA[d_current_type].sync_len >> 1);
} else {
d_threshold = std::min(d_threshold + 1, (d_current_type == RX_TYPE_NXDN) ? 0 : 2);
}
d_expires = d_symbol_count + MODE_DATA[d_current_type].expiration;
}
if (d_symbol_count >= d_expires) {
if (d_debug)
fprintf(stderr, "%s: timeout, symbol %d\n", MODE_DATA[d_current_type].type, d_symbol_count);
d_current_type = RX_TYPE_NONE;
return;
}
if (d_rx_count < MODE_DATA[d_current_type].fragment_len)
return;
d_rx_count = 0;
int start_idx = d_cbuf_idx + CBUF_SIZE - MODE_DATA[d_current_type].fragment_len;
assert (start_idx >= 0);
uint8_t * symbol_ptr = d_cbuf+start_idx;
uint8_t * bit_ptr = symbol_ptr;
if (d_current_type != RX_TYPE_DSTAR) {
dibits_to_bits(bitbuf, symbol_ptr, MODE_DATA[d_current_type].fragment_len);
bit_ptr = bitbuf;
}
switch (d_current_type) {
case RX_TYPE_NONE:
break;
case RX_TYPE_P25:
for (unsigned int codeword_ct=0; codeword_ct < nof_voice_codewords; codeword_ct++) {
for (unsigned int i=0; i<voice_codeword_sz; i++)
tmpcw[i] = bit_ptr[voice_codeword_bits[codeword_ct][i]];
codeword(tmpcw, CODEWORD_P25P1, 0); // 144 bits
}
break;
case RX_TYPE_DMR:
dmr_sync(bit_ptr, current_slot, unmute);
if (!unmute)
break;
codeword(symbol_ptr+12, CODEWORD_DMR, current_slot);
memcpy(tmpcw, symbol_ptr+48, 18);
memcpy(tmpcw+18, symbol_ptr+90, 18);
codeword(tmpcw, CODEWORD_DMR, current_slot);
codeword(symbol_ptr+108, CODEWORD_DMR, current_slot);
break;
case RX_TYPE_DSTAR:
codeword(bit_ptr, CODEWORD_DSTAR, 0); // 72 bits = 72 symbols
break;
case RX_TYPE_YSF:
ysf_sync(symbol_ptr, ysf_fullrate, unmute);
if (!unmute)
break;
for (int vcw = 0; vcw < 5; vcw++) {
if (ysf_fullrate) {
codeword(bit_ptr + 2*(vcw*72 + 120), CODEWORD_YSF_FULLRATE, 0); // 144 bits
} else { /* halfrate */
codeword(bit_ptr + 2*(vcw*72 + 120 + 20), CODEWORD_YSF_HALFRATE, 0); // 104 bits
}
}
break;
case RX_TYPE_NXDN:
nxdn_frame(symbol_ptr);
break;
case RX_N_TYPES:
assert(0==1); /* should not occur */
break;
}
}
static inline void qmsg(const gr::msg_queue::sptr msg_queue, const uint8_t s[], int len, int msgq_id) {
unsigned char hdr[4] = {0xaa, 0x55, (unsigned char)((msgq_id >> 8) & 0xff), (unsigned char)(msgq_id & 0xff)};
if (!msg_queue->full_p()) {
gr::message::sptr msg = gr::message::make_from_string(std::string((char*)hdr, 4) + std::string((char*)s, len), -5, 0, 0);
msg_queue->insert_tail(msg);
}
}
void rx_sync::nxdn_frame(const uint8_t symbol_ptr[])
{ // length is implicitly 192, with frame sync in first 10 dibits
uint8_t dbuf[182];
uint8_t lich;
int answer_len=0;
uint8_t answer[32];
uint8_t sacch_answer[32];
uint8_t lich_buf[8];
int lich_parity_received;
int lich_parity_computed;
int voice=0;
int facch=0;
int facch2=0;
int sacch=0;
int cac=0;
int sr_structure;
int sr_ran;
memcpy(lich_buf, symbol_ptr+10, sizeof(lich_buf));
nxdn_descramble(lich_buf, sizeof(lich_buf));
lich = 0;
for (int i=0; i<8; i++)
lich |= (lich_buf[i] >> 1) << (7-i);
lich_parity_received = lich & 1;
lich_parity_computed = ((lich >> 7) + (lich >> 6) + (lich >> 5) + (lich >> 4)) & 1;
lich = lich >> 1;
if (lich_parity_received != lich_parity_computed) {
if (d_debug)
fprintf(stderr, "NXDN lich parity error, ignoring frame at symbol %d\n", d_symbol_count);
return;
}
voice = 0;
facch = 0;
facch2 = 0;
sacch = 0;
cac = 0;
switch(lich) {
case 0x01: // CAC type
case 0x05:
cac = 1;
break;
case 0x28:
case 0x29:
case 0x2e:
case 0x2f:
case 0x48:
case 0x49:
case 0x4e:
case 0x4f:
case 0x69:
case 0x6f:
facch2 = 1;
break;
case 0x32:
case 0x33:
case 0x52:
case 0x53:
case 0x73:
voice = 2; // second half is voice
facch = 1;
sacch = 1;
break;
case 0x34:
case 0x35:
case 0x54:
case 0x55:
case 0x75:
voice = 1; // first half is voice
facch = 2;
sacch = 1;
break;
case 0x36:
case 0x37:
case 0x56:
case 0x57:
case 0x77:
voice = 3; // voice in both first and last
facch = 0;
sacch = 1;
break;
case 0x20:
case 0x21:
case 0x30:
case 0x31:
case 0x40:
case 0x41:
case 0x50:
case 0x51:
case 0x61:
case 0x71:
voice = 0;
facch = 3; // facch in both
sacch = 1;
break;
case 0x38:
case 0x39:
sacch = 1;
break;
default:
if (d_debug)
fprintf(stderr, "unsupported NXDN lich type 0x%x, symbol %d\n", lich, d_symbol_count);
voice = 0;
break;
} // end of switch(lich)
if (d_debug > 3)
fprintf(stderr, "nxdn lich %x voice %d facch %d sacch %d cac %d symbol %d\n", lich, voice, facch, sacch, cac, d_symbol_count);
if (voice || facch || facch2 || sacch || cac) {
memcpy(dbuf, symbol_ptr+10, sizeof(dbuf));
nxdn_descramble(dbuf, sizeof(dbuf));
}
if (voice & 1)
for (int vcw = 0; vcw < 2; vcw++)
codeword(dbuf+38+36*vcw, CODEWORD_NXDN_EHR, 0);
if (voice & 2)
for (int vcw = 2; vcw < 4; vcw++)
codeword(dbuf+38+36*vcw, CODEWORD_NXDN_EHR, 0);
if (sacch) {
bool non_superframe = (lich == 0x20 || lich == 0x21 || lich == 0x61 || lich == 0x40 || lich == 0x41) ? true : false;
answer_len = sizeof(sacch_answer);
nxdn_decode_sacch(dbuf+8, 30, sacch_answer, answer_len); // sacch size = 30 dibits, 26 bits returned if successful
sr_structure = load_i(sacch_answer, 2) & 3;
if (answer_len > 0 && non_superframe == true && sr_structure == 0) {
answer[0] = 's';
answer[1] = lich;
int nbytes = (answer_len + 7) / 8;
cfill(answer+2, sacch_answer, nbytes);
qmsg(d_msg_queue, answer, nbytes+2, d_msgq_id);
if (d_debug > 2)
debug_dump("nxdn: sacch", answer, nbytes+2);
} else if (answer_len > 0 && non_superframe == false) {
sr_ran = load_i(sacch_answer+2, 6) & 0x3f;
bool ok = true;
if (d_previous_nxdn_sr_structure == -1 && sr_structure != 3)
ok = false;
else if (sr_structure < 3 && sr_structure+1 != d_previous_nxdn_sr_structure)
ok = false;
else if (sr_structure < 3 && d_previous_nxdn_sr_ran != sr_ran)
ok = false;
if (ok) {
int seg = 3 - sr_structure;
memcpy(d_sacch_buf + 18*seg, sacch_answer + 8, 18);
if (sr_structure > 0) {
d_previous_nxdn_sr_ran = sr_ran;
d_previous_nxdn_sr_structure = sr_structure;
} else {
answer[0] = 'S';
answer[1] = lich;
answer[2] = sr_ran;
int nbytes = 9;
cfill(answer+3, d_sacch_buf, nbytes);
qmsg(d_msg_queue, answer, nbytes+3, d_msgq_id);
if (d_debug > 2)
debug_dump("nxdn: sacch", answer, nbytes+3);
d_previous_nxdn_sr_ran = -1;
d_previous_nxdn_sr_structure = -1;
}
} else {
d_previous_nxdn_sr_ran = -1;
d_previous_nxdn_sr_structure = -1;
}
}
}
if (facch & 1) {
answer_len = sizeof(answer)-2;
nxdn_decode_facch(dbuf+38, 72, answer+2, answer_len); // facch size = 72 dibits
if (answer_len > 0) {
answer[0] = 'f';
answer[1] = lich;
qmsg(d_msg_queue, answer, answer_len+2, d_msgq_id);
if (d_debug > 2)
debug_dump("nxdn: facch", answer, answer_len+2);
}
}
if (facch & 2) {
if ((facch & 1) && !memcmp(dbuf+38, dbuf+38+72, 72)) {
if (d_debug > 5)
fprintf(stderr, "nxdn: skipping duplicate facch\n");
} else {
answer_len = sizeof(answer)-2;
nxdn_decode_facch(dbuf+38+72, 72, answer+2, answer_len);
if (answer_len > 0) {
answer[0] = 'f';
answer[1] = lich;
qmsg(d_msg_queue, answer, answer_len+2, d_msgq_id);
if (d_debug > 2)
debug_dump("nxdn: facch", answer, answer_len+2);
}
}
}
if (facch2) {
answer_len = sizeof(answer)-2;
nxdn_decode_facch2_udch(dbuf+8, 174, answer+2, answer_len);
if (answer_len > 0) {
answer[0] = 'u';
answer[1] = lich;
qmsg(d_msg_queue, answer, answer_len+2, d_msgq_id);
if (d_debug > 2)
debug_dump("nxdn: facch2", answer, answer_len+2);
}
}
if (cac) {
answer_len = sizeof(answer)-2;
nxdn_decode_cac(dbuf+8, 150, answer+2, answer_len);
if (answer_len > 0) {
answer[0] = 'c';
answer[1] = lich;
qmsg(d_msg_queue, answer, answer_len+2, d_msgq_id);
if (d_debug > 2)
debug_dump("nxdn: cac", answer, answer_len+2);
}
}
}
} // end namespace op25_repeater
} // end namespace gr