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. #ifndef SERIAL_UART_INIT_CUSTOM # define SERIAL_UART_INIT_CUSTOM \ - /* enable TX */ \ - UCSR1B = _BV(TXEN1); \ - /* 8-bit data */ \ - UCSR1C = _BV(UCSZ11) | _BV(UCSZ10); + /* enable TX */ \ + UCSR1B = _BV(TXEN1); \ + /* 8-bit data */ \ + UCSR1C = _BV(UCSZ11) | _BV(UCSZ10); #endif #if defined(SERIAL_UART_RTS_LO) && defined(SERIAL_UART_RTS_HI)