Search found 37 matches

by adam_esp
Tue Jul 25, 2023 4:07 pm
Forum: ESP-IDF
Topic: Core i7 and still too long compile time
Replies: 3
Views: 705

Core i7 and still too long compile time

Hello, I have a powerful core i7 computer and yet the compilation of the ESP32 project takes a few minutes. How can I enable compilation for all cores of the computer? In other environments (e.g. for STM) the compilation of similar software on eight cores takes a few seconds. I will be grateful for ...
by adam_esp
Mon Mar 28, 2022 8:55 am
Forum: ESP-IDF
Topic: When esp-idf v5.0 will be available
Replies: 3
Views: 3409

Re: When esp-idf v5.0 will be available

Yes i saw, thanks. I would like to know when the official edition of the library will be available, it correlates with our plans to develop new products.

Best regards
Adam
by adam_esp
Fri Mar 25, 2022 12:46 pm
Forum: ESP-IDF 中文讨论版
Topic: esp-idf 5.0 库何时可用?
Replies: 1
Views: 2365

esp-idf 5.0 库何时可用?

esp-idf v5.0 何时可用,是否可以轻松从 4.x 迁移? 在新版本中,库方法经常发生变化,需要使用这些方法的新代码实现,这些困难是否也应该在 5.0 库中出现? 关于 5.0 库本身还有什么更了解的吗? Esp-idf v5.0 Hé shí kěyòng, shìfǒu kěyǐ qīngsōng cóng 4.X qiānyí? Zài xīn bǎnběn zhōng, kù fāngfǎ jīngcháng fāshēng biànhuà, xūyào shǐyòng zhèxiē fāngfǎ de xīn dàimǎ shíxiàn, zhèxiē kùnnán shìf...
by adam_esp
Fri Mar 25, 2022 8:43 am
Forum: ESP-IDF
Topic: When esp-idf v5.0 will be available
Replies: 3
Views: 3409

When esp-idf v5.0 will be available

When will esp-idf v5.0 be available and will there be an easy migration from 4.x? In new releases, library methods often change, there is a need for a new code implementation using these methods, should these difficulties also be expected in the 5.0 library? Is there anything more known about the 5....
by adam_esp
Wed Nov 17, 2021 11:56 am
Forum: ESP-IDF
Topic: How to increase the space for URI registration
Replies: 1
Views: 1492

Re: How to increase the space for URI registration

Make this:

Code: Select all

 httpd_config_t config = HTTPD_DEFAULT_CONFIG();   
    config.max_uri_handlers = 9;
work fine always.

Best regards!
by adam_esp
Wed Nov 17, 2021 10:57 am
Forum: ESP-IDF
Topic: How to increase the space for URI registration
Replies: 1
Views: 1492

How to increase the space for URI registration

Hello! Attempting to register the ninth slot ended with an error: All slots for registering URI handlers have been consumed httpd_register_uri_handler(server, &ws_0_html); httpd_register_uri_handler(server, &ws_1_html); httpd_register_uri_handler(server, &ws_2_html); httpd_register_uri_handler(serve...
by adam_esp
Sun Aug 08, 2021 3:07 pm
Forum: ESP-IDF
Topic: How to extend OTA timeout
Replies: 1
Views: 2876

Re: How to extend OTA timeout

Code: Select all


esp_http_client_config_t config = {
			...
			.timeout_ms = 15000,
			.keep_alive_enable = TRUE,
					};

by adam_esp
Sat Jul 24, 2021 3:59 pm
Forum: ESP-IDF
Topic: How to extend OTA timeout
Replies: 1
Views: 2876

How to extend OTA timeout

OTA update keeps reporting timeot so it doesn't apply. How can I extend this OTA time? ... I (380589) mbedtls: ssl_tls.c:2814 ssl->f_recv(_timeout)() returned 1412 (-0xfffffa7c) D (380719) emac_esp32: receive len= 1466 D (380719) emac_esp32: receive len= 1466 D (380729) emac_esp32: receive len= 1466...
by adam_esp
Sat Jul 24, 2021 8:04 am
Forum: ESP-IDF
Topic: OTA doesn't work over Ethernet but works fine over WiFi
Replies: 12
Views: 7218

Re: OTA doesn't work over Ethernet but works fine over WiFi

My library already has this patch. Observing the logs in real time, I noticed lags. It happens that the transfer stops for a few - several seconds. Besides, it is not liquid, it stops for a few seconds every second or so. Perhaps the reason lies in a completely different layer, the physical layer of...
by adam_esp
Fri Jul 23, 2021 8:56 pm
Forum: ESP-IDF
Topic: OTA doesn't work over Ethernet but works fine over WiFi
Replies: 12
Views: 7218

Re: OTA doesn't work over Ethernet but works fine over WiFi

deeper logging (the very tip of the logo before the failure ) : D (322629) HTTP_CLIENT: need_read=289, byte_to_read=289, rlen=289, ridx=0 D (322639) HTTP_CLIENT: http_on_body 289 I (322639) OTA_HTTP : Downloaded: 63% [425495/666912 Bytes] D (322649) esp_https_ota: Written image length 425495 D (3226...