Hello
Good to know that you are using ESP Delta OTA component. Can you please describe the workflow you are using to create the patch files when secure boot is also enabled.
Search found 11 matches
- Thu Jul 18, 2024 8:57 am
- Forum: ESP-IDF
- Topic: Esp delta ota + Secure Boot + Flash Encryption
- Replies: 3
- Views: 1422
- Mon Jun 17, 2024 8:47 am
- Forum: ESP-IDF
- Topic: Local HTTPS Server for OTA using OpenSSL Version 3.x not working
- Replies: 7
- Views: 2201
Re: Local HTTPS Server for OTA using OpenSSL Version 3.x not working
Hello @chadpham75 I think for the python script to work properly, you need to install the following dependencies: pexpect, pytest, pytest_embedded I think you can install all these dependencies together by running the command ./install.sh --enable_pytest . If you still face issues while installing t...
- Fri Jun 07, 2024 6:41 am
- Forum: ESP-IDF
- Topic: ESP Delta Usage
- Replies: 4
- Views: 885
Re: ESP Delta Usage
Hello @thebigbeepbop
You can enable the APP_REPRODUCIBLE_BUILD config in menuconfig. Enabling this will exclude the time/date stamp from the app image. This way, the workflow you mentioned can be used. Can you try and let me know if this work.
You can enable the APP_REPRODUCIBLE_BUILD config in menuconfig. Enabling this will exclude the time/date stamp from the app image. This way, the workflow you mentioned can be used. Can you try and let me know if this work.
- Thu Jun 06, 2024 8:25 am
- Forum: ESP-IDF
- Topic: Does the ESP32 OTA process support resuming transmission after power failure?
- Replies: 1
- Views: 630
Re: Does the ESP32 OTA process support resuming transmission after power failure?
Hello @chaoaaaa
At the moment, the OTA resumption across reboots/power-off is not supported in ESP-IDF. However, I want to assure you that it's in our plans, and we will have it implemented it in near future.
At the moment, the OTA resumption across reboots/power-off is not supported in ESP-IDF. However, I want to assure you that it's in our plans, and we will have it implemented it in near future.
- Thu Jun 06, 2024 6:41 am
- Forum: ESP-IDF
- Topic: ESP Delta Usage
- Replies: 4
- Views: 885
Re: ESP Delta Usage
Hello @thebigbeepbop A fresh build of the edited_binary will not be same as board update by patch (base_binary, patch) because the firmware has compile date and time embedded in it. So if you rebuild the updated binary, the date and time will get updated and therefore the new build for updated binar...
- Thu Jan 04, 2024 8:09 am
- Forum: ESP-IDF
- Topic: ESP32S3 failure in esp_ota_end()
- Replies: 12
- Views: 6429
Re: ESP32S3 failure in esp_ota_end()
Hello It will be really helpful if you could share some code(sample application) which can be used to recreate this issue. I have tried native_ota example and was unable to reproduce this. Could you also share the sdkconfig file with which you get this issue. Also can you share the debug logs. You w...
- Fri Nov 10, 2023 8:43 am
- Forum: ESP-IDF
- Topic: ESP32 Issue during the OTA update
- Replies: 2
- Views: 1587
Re: ESP32 Issue during the OTA update
Hello @Suresh
This issue has been resolved on the latest release/v4.4 branch. This fix will be included in the next 4.4.x release. You can cherry-pick the commit: https://github.com/espressif/esp-idf/co ... 9736015307
Hope this help.
Thanks
Harshit Malpani
This issue has been resolved on the latest release/v4.4 branch. This fix will be included in the next 4.4.x release. You can cherry-pick the commit: https://github.com/espressif/esp-idf/co ... 9736015307
Hope this help.
Thanks
Harshit Malpani
- Tue Oct 31, 2023 9:47 am
- Forum: ESP-IDF
- Topic: Esp32S3 : How to update a partition which is not a "program" partition ?
- Replies: 2
- Views: 1240
Re: Esp32S3 : How to update a partition which is not a "program" partition ?
Hello @ThomasESP32
You can refer to the discussion on similar issue reported on GitHub: https://github.com/espressif/esp-idf/issues/12393
Hope it helps.
Thanks!
You can refer to the discussion on similar issue reported on GitHub: https://github.com/espressif/esp-idf/issues/12393
Hope it helps.
Thanks!
- Fri Oct 20, 2023 9:03 am
- Forum: ESP-IDF
- Topic: "esp_ota_set_boot_partition()" triggers WDT during image validation
- Replies: 3
- Views: 2807
Re: "esp_ota_set_boot_partition()" triggers WDT during image validation
Hello @Pascon I tried the above shared HTTP_Server_OTA example with the uri handler shared by you. I was able to perform OTA successfully. Can you please share a minimal code to reproduce this issus. Please also share the sdkconfig you are using which reproduces this issue. Can you please also share...
- Mon Oct 16, 2023 6:48 am
- Forum: ESP-IDF
- Topic: HTTP Server stop function can cause endless loop.
- Replies: 3
- Views: 2257
Re: HTTP Server stop function can cause endless loop.
Hello @NotMyRealName I tried simple HTTP server example present in ESP-IDF. I tried to turn off the AP. This made the server to shut down. When I restarted the AP, the server went up again. I was able to do HTTP request using cURL in both the cases. Can you please try the example and let me know if ...