diff options
| -rw-r--r-- | uart.c | 2 | ||||
| -rw-r--r-- | uart.h | 1 |
2 files changed, 1 insertions, 2 deletions
@@ -16,7 +16,7 @@ void uart_init(void) UCSR0C = (1 << UCSZ01) | (1 << UCSZ00); } -void uart_write_char(char c) +static inline void uart_write_char(char c) { while (!(UCSR0A & (1 << UDRE0))) ; @@ -2,7 +2,6 @@ #define UART_H void uart_init(void); -void uart_write_char(char c); void uart_write(const char *s); void uart_write_line(const char *s); |
