From d03b7f3eb4779275210167a0d110472ece2d6607 Mon Sep 17 00:00:00 2001 From: Nicolas Rabault Date: Fri, 22 Mar 2024 18:27:34 +0100 Subject: [PATCH] [Pipe] Increase default serial baudrate to 3000000 Baud --- tool_services/pipe/_pipe.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tool_services/pipe/_pipe.h b/tool_services/pipe/_pipe.h index 09948448a..f0e86c15f 100644 --- a/tool_services/pipe/_pipe.h +++ b/tool_services/pipe/_pipe.h @@ -10,7 +10,7 @@ * Definitions ******************************************************************************/ #ifndef PIPE_SERIAL_BAUDRATE - #define PIPE_SERIAL_BAUDRATE 1000000 + #define PIPE_SERIAL_BAUDRATE 3000000 #endif #ifndef PIPE_TX_BUFFER_SIZE #define PIPE_TX_BUFFER_SIZE 1024 @@ -29,4 +29,4 @@ * Function ******************************************************************************/ streaming_channel_t *Pipe_GetTxStreamChannel(void); -streaming_channel_t *Pipe_GetRxStreamChannel(void); \ No newline at end of file +streaming_channel_t *Pipe_GetRxStreamChannel(void);