summaryrefslogtreecommitdiff
path: root/tmk_core
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-02-06 14:16:03 +0000
committerQMK Bot <hello@qmk.fm>2021-02-06 14:16:03 +0000
commita1ddba6bc484647de96d10766695a25748eabef3 (patch)
tree0c0017192185f6b163e330dbfe5a5870e01c9a11 /tmk_core
parent5f2b7bd78e11fe5042240cdf1859e5e87bf5e2bb (diff)
parent9b874d50713d27b4726aa6b759abf3f3abede3fa (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'tmk_core')
-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 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)