diff --git a/lib/src/phy/phch/pdsch.c b/lib/src/phy/phch/pdsch.c index 63bfa222d..b438a2957 100644 --- a/lib/src/phy/phch/pdsch.c +++ b/lib/src/phy/phch/pdsch.c @@ -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); diff --git a/lib/src/phy/phch/sch.c b/lib/src/phy/phch/sch.c index 3921c8562..e76fa6aef 100644 --- a/lib/src/phy/phch/sch.c +++ b/lib/src/phy/phch/sch.c @@ -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)) {