Search found 14 matches
- Thu Oct 10, 2024 10:56 am
- Forum: ESP32 Arduino
- Topic: ESP32 has been refused by HTTPS connection
- Replies: 1
- Views: 964
ESP32 has been refused by HTTPS connection
I use https://github.com/earlephilhower/ESP8266Audio library for listening web radio streams. It works pretty well except the case I try to connect to HTTPS servers instead of HTTP. In my country almost no radio broadcasting via HTTP, all station use HTTPS. I found out the problem is in HTTP request...
- Wed Jan 10, 2024 8:48 am
- Forum: ESP-IDF
- Topic: mDNS not found on ESP IDF 5.1.2
- Replies: 9
- Views: 63985
Re: mDNS not found on ESP IDF 5.1.2
Thank you for the suggestion, but the only thing this command does is just update the content of idf_component.yml file. The requested component still doesn't appear in ESP-IDF directory. Does this require any additional steps? Did you try doing the build after creating the `idf_component.yml` file...
- Wed Jan 10, 2024 8:46 am
- Forum: ESP-IDF
- Topic: mDNS not found on ESP IDF 5.1.2
- Replies: 9
- Views: 63985
Re: mDNS not found on ESP IDF 5.1.2
The example you provide is "how to use", but the question is "where to get". I still have no idea how to make DNS server on current version of ESP IDF. Have you tried building the example? (See also: https://docs.espressif.com/projects/esp-idf/en/latest/esp32s3/api-guides/tools/idf-component-manage...
- Tue Jan 09, 2024 5:36 am
- Forum: ESP-IDF
- Topic: mDNS not found on ESP IDF 5.1.2
- Replies: 9
- Views: 63985
Re: mDNS not found on ESP IDF 5.1.2
You can find an example of mDNS in RESTful server: https://github.com/espressif/esp-idf/blob/master/examples/protocols/http_server/restful_server/main/esp_rest_main.c The example you provide is "how to use", but the question is "where to get". I still have no idea how to make DNS server on current ...
- Mon Jan 08, 2024 5:36 am
- Forum: ESP-IDF
- Topic: mDNS not found on ESP IDF 5.1.2
- Replies: 9
- Views: 63985
Re: mDNS not found on ESP IDF 5.1.2
Thank you for the suggestion, but the only thing this command does is just update the content of idf_component.yml file. The requested component still doesn't appear in ESP-IDF directory. Does this require any additional steps?
- Fri Jan 05, 2024 10:36 am
- Forum: ESP-IDF
- Topic: mDNS not found on ESP IDF 5.1.2
- Replies: 9
- Views: 63985
mDNS not found on ESP IDF 5.1.2
I make a WiFi device on ESP32-S3, it should works on STA mode and connects to another access point (AP). AP has DHCP server so when my device is connected to AP is has random IP address. There is an application on AP which should communicate with TCP server on my device, it doesn't know current IP a...
- Fri Dec 08, 2023 7:14 am
- Forum: ESP-IDF
- Topic: I can't start debug mode in Espressif IDE
- Replies: 1
- Views: 4847
Re: I can't start debug mode in Espressif IDE
The main problem was with a stupid string in "Debugger" -> "Startup" section: set remote hardware-watchpoint-limit {IDF_TARGET_CPU_WATCHPOINT_NUM} I guess there is no information about IDF_TARGET_CPU_WATCHPOINT_NUM variable so debugger didn't work. I just removed the line and debug session has start...
- Thu Dec 07, 2023 10:15 am
- Forum: ESP-IDF
- Topic: I can't start debug mode in Espressif IDE
- Replies: 1
- Views: 4847
I can't start debug mode in Espressif IDE
I make a project in Espressif IDE from the scratch but use a pattern blink. Than I try to put my board ESP32-S3-Devkitc-1 into debug mode with onboard USB-JTAG. The process starts and I see the code uploads but the debug state is unexpected terminates. Debug console log: Open On-Chip Debugger v0.12....
- Sat Apr 29, 2023 6:44 am
- Forum: ESP IoT Solution
- Topic: Transparent WiFi to Ethernet router/adapter
- Replies: 1
- Views: 5150
Transparent WiFi to Ethernet router/adapter
I need to build a transparent WiFi to Ethernet (and vise versa) router. The main using scenario is connect laptop via WiFi to access point of ESP32-S3 and get full illusion of direct connection to Ethernet. I guess I need to capture IP packets from WiFi and redirect them into Ethernet adapter, but d...
- Thu Apr 07, 2022 10:11 am
- Forum: ESP-IDF
- Topic: How to disable WDT for a task?
- Replies: 2
- Views: 12156
How to disable WDT for a task?
I created a task (the main code is running on core 1) xTaskCreatePinnedToCore(showScreen, "showScreen", 2048, NULL, 0, NULL, 0); and then I got an error during the execution: E (11583) task_wdt: Task watchdog got triggered. The following tasks did not reset the watchdog in time: E (11583) task_wdt: ...