format code according to conventions [skip ci] 0.8.16
authorQMK Bot <hello@qmk.fm>
Fri, 6 Mar 2020 13:28:11 +0000 (13:28 +0000)
committerQMK Bot <hello@qmk.fm>
Fri, 6 Mar 2020 13:28:11 +0000 (13:28 +0000)
tmk_core/common/uart.c

index 66857b6..b29d3bb 100644 (file)
@@ -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();
 }