Rename USART module to UART to emphasize asynchronous mode operation
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#include "common.h"
|
||||
#include "bus/usart.h"
|
||||
#include "bus/uart.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
@@ -42,7 +42,7 @@ void Error(const char *fmt, ...)
|
||||
static void Puts(const char *str)
|
||||
{
|
||||
while (*str != '\0') {
|
||||
USART_Putc(*str++);
|
||||
UART_Putc(*str++);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user