Convert unconditional prints to debug prints in httpd

This commit is contained in:
logicog
2026-01-08 09:56:43 +01:00
parent 0fe70f6b62
commit e085fc9cc9
7 changed files with 138 additions and 106 deletions
+3 -1
View File
@@ -899,7 +899,9 @@ void handle_tx(void)
for(uint8_t i = 0; i < UIP_CONNS; i++) {
uip_periodic(i);
if(uip_len > 0) {
write_char('.'); print_short(i);
#ifdef RXTXDBG
write_char('.'); print_short(i);
#endif
uip_arp_out();
tcpip_output();
}