Search found 4 matches

by HT_espressif
Tue Feb 28, 2023 12:58 pm
Forum: General Discussion
Topic: ESP RF Test Tool v2.8 incompaitibility issue
Replies: 0
Views: 739

ESP RF Test Tool v2.8 incompaitibility issue

We are using the automatic programming feature with the uart port on our ESP32-C3 board. (RTS and DTR pins) When developing in the IDE or uploading binaries it all works fine but we have a problem when using the RF test tool. We can upload software just fine but we cant send commands once the softwa...
by HT_espressif
Tue Mar 08, 2022 11:24 am
Forum: ESP-IDF
Topic: [Solved] esp_partition_write for OTA
Replies: 4
Views: 3168

Re: esp_partition_write for OTA

if ((received = httpd_req_recv(req, buf, MIN(remaining, 512))) <= 0) ... ESP_ERROR_CHECK(esp_partition_write(partition, 0 + (iterator * 512), buf, MIN(remaining, 512))); You're unconditionally writing 512 bytes of the buffer, despite perhaps having less available. Everything after the actual number...
by HT_espressif
Tue Mar 08, 2022 7:42 am
Forum: ESP-IDF
Topic: [Solved] esp_partition_write for OTA
Replies: 4
Views: 3168

Re: esp_partition_write for OTA

Hello Sprite, I attached a picture from this free text compare website you can upload text there and it will show where it is different. https://www.diffchecker.com/diff The picture I attached is a screenshot of that webpage. As you can see sometimes there is whitespace added in random posititions i...
by HT_espressif
Mon Mar 07, 2022 2:59 pm
Forum: ESP-IDF
Topic: [Solved] esp_partition_write for OTA
Replies: 4
Views: 3168

[Solved] esp_partition_write for OTA

Hello, I want to implement OTA programming for the ESP32. But I dont want to use a webserver but through direct file transfer on an html page. So I wrote this handler which triggers on a HTTP post request. The function works and I can select a binary file and program the esp32. However the esp_parti...