switch UART debug ouput to 2 Mbps instead of slow legacy 115200 bps

This commit is contained in:
King Kévin 2017-04-02 13:41:49 +02:00
parent bbc66e3c82
commit 9246317c4d
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@
#define USART_ID 1 /**< USART peripheral */
/** @} */
#define USART_BAUDRATE 115200 /**< serial baudrate, in bits per second (with 8N1 8 bits, no parity bit, 1 stop bit settings) */
#define USART_BAUDRATE 2000000 /**< serial baudrate, in bits per second (with 8N1 8 bits, no parity bit, 1 stop bit settings) */
/* input and output ring buffer, indexes, and available memory */
static uint8_t rx_buffer[USART_BUFFER] = {0}; /**< ring buffer for received data */