From e8cfe8e77afb6af661fd53e500fdef32fe2b6744 Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Thu, 2 Jun 2016 22:54:35 -0500 Subject: [PATCH] Go down to 38400 baud for stability --- include/tabby/avr/uart.h | 2 +- include/tabby/link.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/tabby/avr/uart.h b/include/tabby/avr/uart.h index 0db78ba..137ed88 100644 --- a/include/tabby/avr/uart.h +++ b/include/tabby/avr/uart.h @@ -3,7 +3,7 @@ #include -#define TABBY_AVR_UART_BAUD 57600 +#define TABBY_AVR_UART_BAUD 38400 void uart_init(); diff --git a/include/tabby/link.h b/include/tabby/link.h index 31497b8..6138501 100644 --- a/include/tabby/link.h +++ b/include/tabby/link.h @@ -1,7 +1,7 @@ #ifndef _TABBY_LINK_H #define _TABBY_LINK_H -#define TABBY_LINK_BAUD B57600 +#define TABBY_LINK_BAUD B38400 int tabby_link_open(const char *dev);