diff options
author | Ryan <fauxpark@gmail.com> | 2021-02-07 01:15:30 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-06 14:15:30 +0000 |
commit | 9b874d50713d27b4726aa6b759abf3f3abede3fa (patch) | |
tree | 79ea2fef26676d32155a5a15dbad73825ccb0f16 /tmk_core/protocol | |
parent | 0e8cef28d29d984095d7c6d1ac2d0cf032bdc323 (diff) |
Manual formatting fix for serial_uart.c (#11806)
Diffstat (limited to 'tmk_core/protocol')
-rw-r--r-- | tmk_core/protocol/serial_uart.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tmk_core/protocol/serial_uart.c b/tmk_core/protocol/serial_uart.c index 4fe059e7d9..d5b5657095 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) |