We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea7eade commit 1c61674Copy full SHA for 1c61674
libraries/ESP8266HTTPClient/src/ESP8266HTTPClient.cpp
@@ -567,7 +567,7 @@ bool HTTPClient::connect(void) {
567
}
568
569
// set Timeout for readBytesUntil and readStringUntil
570
- _tcp->setTimeout(HTTPClient_TCP_TIMEOUT);
+ _tcp->setTimeout(HTTPCLIENT_TCP_TIMEOUT);
571
572
#ifdef ESP8266
573
_tcp->setNoDelay(true);
libraries/ESP8266HTTPClient/src/ESP8266HTTPClient.h
@@ -25,10 +25,10 @@
25
#ifndef ESP8266HTTPClient_H_
26
#define ESP8266HTTPClient_H_
27
28
-//#define DEBUG_HTTPClient(...) Serial1.printf( __VA_ARGS__ )
+//#define DEBUG_HTTPCLIENT(...) Serial1.printf( __VA_ARGS__ )
29
30
-#ifndef DEBUG_HTTPClient
31
-#define DEBUG_HTTPClient(...)
+#ifndef DEBUG_HTTPCLIENT
+#define DEBUG_HTTPCLIENT(...)
32
#endif
33
34
#define HTTPClient_TCP_TIMEOUT (1000)
0 commit comments