Documentation and minor fixes

This commit is contained in:
2024-09-02 03:22:49 +02:00
parent 3f336798c3
commit 80fb3a32c9
3 changed files with 1 additions and 1 deletions

View File

@@ -4,7 +4,7 @@
static void Puts(const char *str)
{
while (*str) {
while (*str != '\0') {
USART_Putc(*str++);
}
}