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

BIN
docs/AHT20.pdf Executable file

Binary file not shown.

BIN
docs/BMP280.pdf Executable file

Binary file not shown.

View File

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