From 346b607c48e500df759ce94f9c5a9a3559dd1bb7 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Wed, 26 Jul 2017 22:39:20 +0200 Subject: [PATCH] hal_uart_dma: fix argument of hal_uart_dma_set_flowcontrol (int instead of uint32) --- platform/embedded/hal_uart_dma.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/embedded/hal_uart_dma.h b/platform/embedded/hal_uart_dma.h index e4316abb2..7ad85d583 100644 --- a/platform/embedded/hal_uart_dma.h +++ b/platform/embedded/hal_uart_dma.h @@ -85,7 +85,7 @@ int hal_uart_dma_set_baud(uint32_t baud); * @brief Set flowcontrol * @param flowcontrol enabled */ -int hal_uart_dma_set_flowcontrol(uint32_t flowcontrol); +int hal_uart_dma_set_flowcontrol(int flowcontrol); #endif /**