From 59f9c69bb4d92dc013faff68353c123d8d003258 Mon Sep 17 00:00:00 2001 From: Shawn Nock Date: Thu, 18 Jul 2019 14:33:18 -0400 Subject: [PATCH] Re-loggening --- src/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.c b/src/main.c index 01eb531..60f0397 100644 --- a/src/main.c +++ b/src/main.c @@ -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;