From 51d4d931ac85f67877a0a4004d5fb128115aa4fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Wed, 12 Jun 2019 15:12:02 +0200 Subject: [PATCH] UART: switch to faster default baud rate 921600 bps --- lib/uart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/uart.c b/lib/uart.c index d602b27..48329cd 100644 --- a/lib/uart.c +++ b/lib/uart.c @@ -40,7 +40,7 @@ #define UART_ID 1 /**< USART peripheral */ /** @} */ -#define UART_BAUDRATE 115200 /**< serial baudrate, in bits per second (with 8N1 8 bits, no parity bit, 1 stop bit settings) */ +#define UART_BAUDRATE 921600 /**< serial baud rate, in bits per second (with 8N1 8 bits, no parity bit, 1 stop bit settings) */ /* output ring buffer, indexes, and available memory */ static volatile uint8_t tx_buffer[64] = {0}; /**< ring buffer for data to transmit */