Commit 989aade7 authored by ChiehChun's avatar ChiehChun Committed by Robert Schmidt

Log lcid default case & pirntout MAC PDU

parent 21e93394
......@@ -266,6 +266,7 @@ void nr_process_mac_pdu(
break;
default:
LOG_E(MAC, "Received unknown MAC header (LCID = 0x%02x)\n", rx_lcid);
return;
break;
}
......@@ -274,6 +275,10 @@ void nr_process_mac_pdu(
if (pdu_len < 0) {
LOG_E(MAC, "%s() residual mac pdu length < 0!, pdu_len: %d\n", __func__, pdu_len);
LOG_E(MAC, "MAC PDU ");
for (int i = 0; i < 20; i++) // Only printf 1st - 20nd bytes
printf("%02x ", pdu_ptr[i]);
printf("\n");
return;
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment