Search found 3 matches
- Sun Jan 28, 2024 8:55 pm
- Forum: ESP32 Arduino
- Topic: ESP32 weird http requests when using freertos tasks
- Replies: 3
- Views: 1151
Re: ESP32 weird http requests when using freertos tasks
Thank you so much for your response. Using the same http client for every connection actually solved the problem. Should i stil add an connection close header or is this unnecessary now? Thank you again, i was starting to despair
- Sat Jan 27, 2024 11:16 pm
- Forum: ESP32 Arduino
- Topic: ESP32 weird http requests when using freertos tasks
- Replies: 3
- Views: 1151
ESP32 weird http requests when using freertos tasks
Hi, This is my project on an esp32 programmed in arduino where i try the text of a google apps script in a seperate task. Everything works fine until i push the google caledar method in a seperate task, then it will always fail to do the request after the second time and later just stop requesting a...
- Mon Jan 22, 2024 10:30 pm
- Forum: ESP32 Arduino
- Topic: FreeRTOS http only working once (IllegalInstruction)
- Replies: 1
- Views: 703
FreeRTOS http only working once (IllegalInstruction)
Hello this is my arduino code for an esp32 which just setups wifi and then runs the setGoogleCalendar() function forever: #include <WiFi.h> #include <HTTPClient.h> #include "time.h" // Replace with your network credentials const char* ssid = "FRITZ!Box 6490 Cable"; const char* password = "xxxx"; // ...