Added SS type to PDSCH context info

This commit is contained in:
Xavier Arteaga 2021-10-13 12:55:24 +02:00
parent a5f6aa9f31
commit 51ff429bc7
1 changed files with 3 additions and 2 deletions

View File

@ -2072,10 +2072,11 @@ uint32_t srsran_dci_ctx_to_str(const srsran_dci_ctx_t* ctx, char* str, uint32_t
len = srsran_print_check(str,
str_len,
len,
"%s-rnti=%04x dci=%s ",
"%s-rnti=%04x dci=%s ss=%s",
srsran_rnti_type_str_short(ctx->rnti_type),
ctx->rnti,
srsran_dci_format_nr_string(ctx->format));
srsran_dci_format_nr_string(ctx->format),
srsran_ss_type_str(ctx->ss_type));
if (ctx->format != srsran_dci_format_nr_rar) {
len = srsran_print_check(str, str_len, len, "L=%d cce=%d ", ctx->location.L, ctx->location.ncce);