Removed debugging printf

This commit is contained in:
Ismael Gomez 2017-09-26 17:30:35 +02:00
parent db17c67194
commit fbae23b2ac
2 changed files with 0 additions and 7 deletions

View file

@ -600,8 +600,6 @@ static int srslte_pdsch_codeword_decode(srslte_pdsch_t *q, srslte_pdsch_cfg_t *c
/* Bit scrambling */
srslte_scrambling_s_offset(seq, q->e[codeword_idx], 0, nbits->nof_bits);
printf("e: "); srslte_vec_fprint_s(stdout, q->e[codeword_idx], 10);
/* Return */
ret = srslte_dlsch_decode2(&q->dl_sch, cfg, softbuffer, q->e[codeword_idx], data, codeword_idx);

View file

@ -372,9 +372,6 @@ bool decode_tb_cb(srslte_sch_t *q,
}
decoder_input[i] = softbuffer->buffer_f[cb_idx[i]];
printf("input: "); srslte_vec_fprint_s(stdout, decoder_input[i], 10);
}
}
}
@ -398,8 +395,6 @@ bool decode_tb_cb(srslte_sch_t *q,
crc_ptr = &q->crc_tb;
}
printf("output: %d", i); srslte_vec_fprint_b(stdout, q->cb_in, 10);
// CRC is OK
if (!srslte_crc_checksum_byte(crc_ptr, q->cb_in, len_crc)) {