aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 66857b673..b29d3bbb9 100644
--- a/tmk_core/common/uart.c
+++ b/tmk_core/common/uart.c
@@ -114,7 +114,7 @@ void uart_putchar(uint8_t c) {
114 // cli(); 114 // cli();
115 tx_buffer[i] = c; 115 tx_buffer[i] = c;
116 tx_buffer_head = i; 116 tx_buffer_head = i;
117 UCSRnB = (1 << RXENn) | (1 << TXENn) | (1 << RXCIEn) | (1 << UDRIEn); 117 UCSRnB = (1 << RXENn) | (1 << TXENn) | (1 << RXCIEn) | (1 << UDRIEn);
118 // sei(); 118 // sei();
119} 119}
120 120