Browse Source

format code according to conventions [skip ci]

pull/8322/head 0.8.16
QMK Bot 4 years ago
parent
commit
bad9468ce1
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tmk_core/common/uart.c

+ 1
- 1
tmk_core/common/uart.c View 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();
}


Loading…
Cancel
Save