From efdf6f0487c48a0100602c57a05c50f07becc908 Mon Sep 17 00:00:00 2001 From: Kevin Loo Keng Leong Date: Mon, 27 Jan 2025 09:26:59 +0800 Subject: [PATCH] Update HTTP example --- .../Http/examples/SimpleHttpExample/SimpleHttpExample.ino | 1 + 1 file changed, 1 insertion(+) diff --git a/Arduino_package/hardware/libraries/Http/examples/SimpleHttpExample/SimpleHttpExample.ino b/Arduino_package/hardware/libraries/Http/examples/SimpleHttpExample/SimpleHttpExample.ino index 09a5edcb..a4b3bcb4 100644 --- a/Arduino_package/hardware/libraries/Http/examples/SimpleHttpExample/SimpleHttpExample.ino +++ b/Arduino_package/hardware/libraries/Http/examples/SimpleHttpExample/SimpleHttpExample.ino @@ -40,6 +40,7 @@ void loop() { int err = 0; WiFiClient c; + c.setBlockingMode(); HttpClient http(c); err = http.get(kHostname, kPath);