Re-loggening
This commit is contained in:
parent
91b402fc6c
commit
59f9c69bb4
|
@ -232,12 +232,12 @@ static void process_unack(void)
|
|||
static void h5_print_header(h5_hdr_t *hdr)
|
||||
{
|
||||
if (hdr->is_reliable) {
|
||||
LOG_DBG("REL: seq %u ack %u crc %u type %u len %u",
|
||||
LOG_DBG("REL: seq %d ack %d crc %d type %d len %d",
|
||||
hdr->seq, hdr->ack,
|
||||
hdr->checksum, hdr->packet_type,
|
||||
hdr->len);
|
||||
} else {
|
||||
LOG_DBG("UNREL: ack %u crc %u type %u len %u",
|
||||
LOG_DBG("UNREL: ack %d crc %d type %d len %d",
|
||||
hdr->ack, hdr->checksum,
|
||||
hdr->packet_type, hdr->len);
|
||||
}
|
||||
|
@ -530,7 +530,7 @@ static void unproc_thread(void) {
|
|||
goto next;
|
||||
}
|
||||
|
||||
//h5_print_header(&hdr);
|
||||
h5_print_header(&hdr);
|
||||
|
||||
struct net_buf *rx_buf = NULL;
|
||||
|
||||
|
|
Loading…
Reference in New Issue