Merge pull request #258 from bennydiamond/newline-on-uip-serial-print

Automatically print newline on serial interface
This commit is contained in:
logicog
2026-08-22 19:14:45 +02:00
committed by GitHub
4 changed files with 13 additions and 6 deletions
+6
View File
@@ -289,6 +289,12 @@ void print_string_no_syslog(__code char *p)
write_char_no_syslog(*p++);
}
void print_string_newline_no_syslog(__code char *p)
{
write_char_no_syslog('\n');
print_string_no_syslog(p);
}
void print_string_x(__xdata char *p)
{
while (*p)