aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tmk_core/protocol/serial_uart.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tmk_core/protocol/serial_uart.c b/tmk_core/protocol/serial_uart.c
index 4fe059e7d..d5b565709 100644
--- a/tmk_core/protocol/serial_uart.c
+++ b/tmk_core/protocol/serial_uart.c
@@ -50,10 +50,10 @@ POSSIBILITY OF SUCH DAMAGE.
50 50
51#ifndef SERIAL_UART_INIT_CUSTOM 51#ifndef SERIAL_UART_INIT_CUSTOM
52# define SERIAL_UART_INIT_CUSTOM \ 52# define SERIAL_UART_INIT_CUSTOM \
53 /* enable TX */ \ 53 /* enable TX */ \
54 UCSR1B = _BV(TXEN1); \ 54 UCSR1B = _BV(TXEN1); \
55 /* 8-bit data */ \ 55 /* 8-bit data */ \
56 UCSR1C = _BV(UCSZ11) | _BV(UCSZ10); 56 UCSR1C = _BV(UCSZ11) | _BV(UCSZ10);
57#endif 57#endif
58 58
59#if defined(SERIAL_UART_RTS_LO) && defined(SERIAL_UART_RTS_HI) 59#if defined(SERIAL_UART_RTS_LO) && defined(SERIAL_UART_RTS_HI)