remove prog_char

This commit is contained in:
Olaf Rempel 2017-11-27 19:31:11 +01:00
parent 4e9a4a246d
commit 3467373aed
2 changed files with 2 additions and 2 deletions

2
uart.c
View File

@ -113,7 +113,7 @@ void uart_putstr(const char *str)
} /* uart_putstr */ } /* uart_putstr */
void uart_putstr_p (const prog_char *str) void uart_putstr_p (const char *str)
{ {
uint8_t c; uint8_t c;

2
uart.h
View File

@ -11,7 +11,7 @@ void uart_putc (uint8_t data);
uint8_t uart_getc (void); uint8_t uart_getc (void);
uint8_t uart_rx_count (void); uint8_t uart_rx_count (void);
void uart_putstr (const char *str); void uart_putstr (const char *str);
void uart_putstr_p (const prog_char *str); void uart_putstr_p (const char *str);
void uart_put_hex (uint8_t data); void uart_put_hex (uint8_t data);
uint8_t uart_get_hex (void); uint8_t uart_get_hex (void);