change baudrate to 1.5Mbps since the CP2102 can't handle more

This commit is contained in:
King Kévin 2017-04-15 13:58:14 +02:00
parent b26a10e085
commit 3f42242571
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@
#define USART_ID 1 /**< USART peripheral */
/** @} */
#define USART_BAUDRATE 2000000 /**< serial baudrate, in bits per second (with 8N1 8 bits, no parity bit, 1 stop bit settings) */
#define USART_BAUDRATE 1500000 /**< 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 */