use fastest baudrate

This commit is contained in:
King Kévin 2015-07-18 20:13:54 +02:00
parent 384cc5e11b
commit ee5c26cf02
1 changed files with 4 additions and 2 deletions

View File

@ -14,8 +14,10 @@
*/
/* This library handles the USART configuration */
/* set atmolight serial baudrate, in bits per second (with 8N1 8 bits, no parity bit, 1 stop bit settings) */
#define BAUD 38400
/* set tolerance to 3% to allow 115200 baudrate with 16 MHz clock */
#define BAUD_TOL 3
/* serial baudrate, in bits per second (with 8N1 8 bits, no parity bit, 1 stop bit settings) */
#define BAUD 115200
/* input & output streams */
FILE uart_output;