File tree Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 9
9
#endif
10
10
#endif
11
11
12
- #ifndef ARDUINO_LOOP_STACK_SIZE
13
- #ifndef CONFIG_ARDUINO_LOOP_STACK_SIZE
14
- #define ARDUINO_LOOP_STACK_SIZE 8192
15
- #else
16
- #define ARDUINO_LOOP_STACK_SIZE CONFIG_ARDUINO_LOOP_STACK_SIZE
17
- #endif
12
+ // #ifndef ARDUINO_LOOP_STACK_SIZE
13
+ // #ifndef CONFIG_ARDUINO_LOOP_STACK_SIZE
14
+ // #define ARDUINO_LOOP_STACK_SIZE 8192
15
+ // #else
16
+ // #define ARDUINO_LOOP_STACK_SIZE CONFIG_ARDUINO_LOOP_STACK_SIZE
17
+ // #endif
18
+ // #endif
19
+
20
+ #ifdef ARDUINO_LOOP_STACK_SIZE
21
+ #undef ARDUINO_LOOP_STACK_SIZE
18
22
#endif
23
+ #define ARDUINO_LOOP_STACK_SIZE 6144
19
24
20
25
TaskHandle_t loopTaskHandle = NULL ;
21
26
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ enum HTTPAuthMethod { BASIC_AUTH, DIGEST_AUTH };
43
43
44
44
#define HTTP_MAX_DATA_WAIT 5000 // ms to wait for the client to send the request
45
45
#define HTTP_MAX_POST_WAIT 5000 // ms to wait for POST data to arrive
46
- #define HTTP_MAX_SEND_WAIT 5000 // ms to wait for data chunk to be ACKed
46
+ #define HTTP_MAX_SEND_WAIT 30000 // ms to wait for data chunk to be ACKed
47
47
#define HTTP_MAX_CLOSE_WAIT 2000 // ms to wait for the client to close the connection
48
48
49
49
#define CONTENT_LENGTH_UNKNOWN ((size_t ) -1 )
You can’t perform that action at this time.
0 commit comments