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
+1 -1
View File
@@ -234,7 +234,7 @@ __xdata struct uip_stats uip_stat;
#endif /* UIP_STATISTICS == 1 */
#if UIP_LOGGING == 1
#define UIP_LOG(m) print_string_no_syslog(m);
#define UIP_LOG(m) print_string_newline_no_syslog(m);
#else
#define UIP_LOG(m)
#endif /* UIP_LOGGING == 1 */