From 5d731393f18ceef6b6a81002486a41f56ea64db7 Mon Sep 17 00:00:00 2001 From: chriz Date: Sat, 14 Feb 2026 11:17:42 +0100 Subject: [PATCH] Delay reset, to allow TCP reset to be transmitted. --- httpd/httpd.c | 1 + 1 file changed, 1 insertion(+) diff --git a/httpd/httpd.c b/httpd/httpd.c index 4432f29..b1ede96 100644 --- a/httpd/httpd.c +++ b/httpd/httpd.c @@ -603,6 +603,7 @@ void httpd_appcall(void) send_mtu(); // dummy response } else if (is_word(q, "/reset")) { uip_close(); + delay(1000); //wait for the close packet to be sent, otherwise the browser will retry reset_chip(); } else { send_not_found();