From b159bf0bb24a99c7d3ff1b3855f840add63198e5 Mon Sep 17 00:00:00 2001 From: Paul Selkirk Date: Wed, 11 Oct 2017 21:26:27 -0400 Subject: Cleanup 'unused parameter' warnings, a couple of which are actual coding errors. --- stm-uart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stm-uart.c') diff --git a/stm-uart.c b/stm-uart.c index f54d95e..59089fe 100644 --- a/stm-uart.c +++ b/stm-uart.c @@ -249,7 +249,7 @@ HAL_StatusTypeDef uart_send_hexdump(stm_uart_port_t port, const uint8_t *buf, uart_send_string2(port, "00 -- "); - for (i = 0; i <= end_offset; i++) { + for (i = start_offset; i <= end_offset; i++) { if (i && (! (i % 16))) { uart_send_string2(port, "\r\n"); -- cgit v1.2.3