summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2020-03-06 13:28:11 +0000
committerQMK Bot <hello@qmk.fm>2020-03-06 13:28:11 +0000
commitbad9468ce1b2700188e1bc30ddfd7f0f9ed435bd (patch)
tree158b733d22a5435e82f39b5e5580693e77a7ba64
parent9810756ee02327673456cb965612eb657700a218 (diff)
format code according to conventions [skip ci]0.8.16
-rw-r--r--tmk_core/common/uart.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/common/uart.c b/tmk_core/common/uart.c
index 66857b673e..b29d3bbb94 100644
--- a/tmk_core/common/uart.c
+++ b/tmk_core/common/uart.c
@@ -114,7 +114,7 @@ void uart_putchar(uint8_t c) {
// cli();
tx_buffer[i] = c;
tx_buffer_head = i;
- UCSRnB = (1 << RXENn) | (1 << TXENn) | (1 << RXCIEn) | (1 << UDRIEn);
+ UCSRnB = (1 << RXENn) | (1 << TXENn) | (1 << RXCIEn) | (1 << UDRIEn);
// sei();
}