File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -288,7 +288,7 @@ class HttpRequest {
288
288
if (isChunked ()) {
289
289
write (nullptr , 0 );
290
290
}
291
- LOGI (" Request written ... waiting for reply" )
291
+ LOGI (" Request written ... waiting for reply" );
292
292
// Commented out because this breaks the RP2040 W
293
293
// client_ptr->flush();
294
294
reply_header.read (*client_ptr);
Original file line number Diff line number Diff line change @@ -231,7 +231,7 @@ class URLStream : public AbstractURLStream {
231
231
TRACED ();
232
232
uint32_t end = millis () + timeout;
233
233
if (request.available () == 0 ) {
234
- LOGI (" Request written ... waiting for reply" )
234
+ LOGI (" Request written ... waiting for reply" );
235
235
while (request.available () == 0 ) {
236
236
if (millis () > end) break ;
237
237
// stop waiting if we got an error
Original file line number Diff line number Diff line change 8
8
// delay and millis is needed by this framework
9
9
#define DESKTOP_MILLIS_DEFINED
10
10
11
- inline void delay (uint32_t ms ){ vTaskDelay (ms * 1000 / portTICK_PERIOD_MS );}
11
+ inline void delay (uint32_t ms ){ vTaskDelay (ms / portTICK_PERIOD_MS );}
12
12
inline uint32_t millis () {return (xTaskGetTickCount () * portTICK_PERIOD_MS );}
13
13
inline void delayMicroseconds (uint32_t ms ) {esp_rom_delay_us (ms );}
14
14
//inline uint64_t micros() { return xTaskGetTickCount();}
15
- extern uint64_t micros ();
15
+ // extern uint64_t micros();
16
16
17
17
#endif
18
18
You can’t perform that action at this time.
0 commit comments