Skip to content

Commit

Permalink
Shorten some debug output to make storing commands in queue quicker.
Browse files Browse the repository at this point in the history
  • Loading branch information
breaker27 committed Mar 7, 2015
1 parent 3479622 commit 4808e5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firmware/src_common/uart.c
Expand Up @@ -220,7 +220,7 @@ void process_rxbuf(void)
{
cmdbuf[bytes_pos] = input;
bytes_pos++;
UART_PUTF4("*** Received character %c (ASCII %u) = value 0x%x, %u bytes to go. ***\r\n", input, input, hex_to_byte(input), bytes_to_read - bytes_pos);
UART_PUTF3("*** %c = value 0x%x, %u bytes to go. ***\r\n", input, hex_to_byte(input), bytes_to_read - bytes_pos);
}
else
{
Expand Down

0 comments on commit 4808e5e

Please sign in to comment.