Search found 7 matches
- Fri Oct 18, 2024 8:20 am
- Forum: ESP-IDF
- Topic: HTTP Server stops responding with NTP
- Replies: 3
- Views: 1606
Re: HTTP Server stops responding with NTP
In the end I solved this issue by disabling the UART over USB port and putting compiling options to performance. So definitely some timing issues.
- Fri Aug 09, 2024 8:22 am
- Forum: ESP-IDF
- Topic: HTTP Server stops responding with NTP
- Replies: 3
- Views: 1606
Re: HTTP Server stops responding with NTP
Is there anyone who can help me maybe?
- Thu Jul 18, 2024 8:15 am
- Forum: ESP-IDF
- Topic: HTTP Server stops responding with NTP
- Replies: 3
- Views: 1606
HTTP Server stops responding with NTP
I am trying to get the HTTP server working together with the NTP and MQTT services. I am using ESP-IDF 5.2. However, I am struggling to get it working stable. I thought I got NTP and HTTP server running together stable, so I moved on to MQTT, but as soon as the MQTT service is trying to connect to t...
- Fri Jun 16, 2023 8:10 am
- Forum: ESP-IDF
- Topic: http server refuses connection
- Replies: 2
- Views: 2270
Re: http server refuses connection
There were different things going wrong in my code. It was easier to put the Wifi driver in APSTA mode. Then you can use Wifi connect / disconnect for connecting with the access point for station mode while the ESP32 soft AP remains active. Then running the http server will just work normally instea...
- Wed Apr 26, 2023 8:48 pm
- Forum: ESP-IDF
- Topic: http server refuses connection
- Replies: 2
- Views: 2270
http server refuses connection
When I'm running my ESP32-S2 in Access Point (AP) mode with a fixed IP and the ESP IDF http server running, I am able to connect to the server (port 80). However, I made the application such that I can change to station mode (STA), stop the http server, restart the wifi and start the server again. A...
- Fri Apr 21, 2023 8:01 am
- Forum: Hardware
- Topic: ESP32-S2 - GPIO 39 not working as ouput?
- Replies: 2
- Views: 1329
Re: ESP32-S2 - GPIO 39 not working as ouput?
That worked! Many thanks!
- Sun Apr 16, 2023 12:52 pm
- Forum: Hardware
- Topic: ESP32-S2 - GPIO 39 not working as ouput?
- Replies: 2
- Views: 1329
ESP32-S2 - GPIO 39 not working as ouput?
I'm trying to use GPIO 39 as an output to drive an LED. I know on the ESP32 WROOM that's not possible, but it should be possible on the ESP32-S2. However, the output remains low. gpio_set_direction(39, GPIO_MODE_OUTPUT); gpio_set_level(39, HIGH); What can I do? Is it conflicting with jtag (since IO3...