Merge pull request #472 from marckleinebudde/cansequence

cansequence: print counter received data as hex
pull/473/head
Marc Kleine-Budde 2023-11-24 08:17:49 +01:00 committed by GitHub
commit 97c8ccdbbf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ static void do_receive()
sequence = sequence_rx;
overflow_old = overflow;
} else if (verbose > 1) {
printf("sequence CNT: %6u, RX: %6u\n", sequence, sequence_rx);
printf("sequence CNT: 0x%07x RX: 0x%02x\n", sequence, sequence_rx);
}
sequence++;