Add a log to signal LDPC segment decode NOK

Signed-off-by: Robert Schmidt <robert.schmidt@openairinterface.org>
This commit is contained in:
Raymond Knopp
2026-02-25 15:05:56 +01:00
committed by Robert Schmidt
parent aaf2e2aed9
commit a47d958636

View File

@@ -837,6 +837,8 @@ static inline uint32_t nrLDPC_decoder_core(int8_t* p_llr,
if (p_decParams->check_crc((uint8_t*)p_out, p_decParams->Kprime, p_decParams->crc_type)) {
LOG_D(PHY, "Segment CRC OK, exiting LDPC decoder\n");
break;
} else {
LOG_D(PHY, "Segment CRC NOK, Kprime %d, BG %d, Z %d\n", p_decParams->Kprime, BG, Z);
}
}
}