1
0
Fork 0

Re-loggening

This commit is contained in:
Shawn Nock 2019-07-18 14:33:18 -04:00
parent 91b402fc6c
commit 59f9c69bb4
1 changed files with 3 additions and 3 deletions

View File

@ -232,12 +232,12 @@ static void process_unack(void)
static void h5_print_header(h5_hdr_t *hdr) static void h5_print_header(h5_hdr_t *hdr)
{ {
if (hdr->is_reliable) { 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->seq, hdr->ack,
hdr->checksum, hdr->packet_type, hdr->checksum, hdr->packet_type,
hdr->len); hdr->len);
} else { } 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->ack, hdr->checksum,
hdr->packet_type, hdr->len); hdr->packet_type, hdr->len);
} }
@ -530,7 +530,7 @@ static void unproc_thread(void) {
goto next; goto next;
} }
//h5_print_header(&hdr); h5_print_header(&hdr);
struct net_buf *rx_buf = NULL; struct net_buf *rx_buf = NULL;