Automatically print newline on serial interface

For some print_string
This commit is contained in:
bennydiamond
2026-06-07 14:52:56 -04:00
parent 8f3b738e59
commit 7a7ffd3bf8
4 changed files with 13 additions and 6 deletions
+6
View File
@@ -271,6 +271,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)