Rename USART module to UART to emphasize asynchronous mode operation

This commit is contained in:
2024-10-01 22:15:19 +02:00
parent 7133f54617
commit 8d94bd87a2
6 changed files with 32 additions and 58 deletions

View File

@@ -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++);
}
}