I checked the following link supporting Pre-encrypted OTA for esp-idf 4.4. Would like to know if it can be integrated with custom esp-idf 4.2 integrated with amazon freertos. https://github.com/aws/amazon-freertos
https://github.com/espressif/esp-idf/is ... 1101345156
Search found 6 matches
- Tue Aug 05, 2025 3:59 pm
- Forum: General Discussion
- Topic: Pre-encrypted ota support on amazon freertos supporting esp-idf 4.2
- Replies: 0
- Views: 48
- Sat Mar 22, 2025 6:17 am
- Forum: General Discussion
- Topic: Nvs Reading, writing and erasing in Bootloader
- Replies: 1
- Views: 415
Nvs Reading, writing and erasing in Bootloader
Code: Untitled.txt Select all
How can I read, write and erase nvs from bootloader in esp32?- Fri Mar 21, 2025 4:00 am
- Forum: General Discussion
- Topic: Booting partitions based on NVS flag and a voltage level on io pins
- Replies: 0
- Views: 197
Booting partitions based on NVS flag and a voltage level on io pins
Code: Untitled.txt Select all
In the bootloader
Firstly, I want bootloader should always boot ota0 first
Secondly, I want to boot partition ota1 and ota0 based on an nvs flag and voltage level on io pins on esp32s3. How can i modify the existing bootloader to acheive it?
- Thu Mar 20, 2025 10:51 am
- Forum: General Discussion
- Topic: How to boot ota1 from ota0 partition?
- Replies: 1
- Views: 335
How to boot ota1 from ota0 partition?
I got this solution please verify if it's logically correct?
Solution: Using esp_app_desc_t and esp_image_load().
This method manually loads and jumps to the desired partition without changing the bootloader's configuration.
📌 Implementation (Modified ota0)
#include "freertos/FreeRTOS.h ...
Solution: Using esp_app_desc_t and esp_image_load().
This method manually loads and jumps to the desired partition without changing the bootloader's configuration.
📌 Implementation (Modified ota0)
#include "freertos/FreeRTOS.h ...
- Thu Mar 20, 2025 2:00 am
- Forum: General Discussion
- Topic: Fail Safe bootloader
- Replies: 0
- Views: 205
Fail Safe bootloader
I have three partitions ota0 ota1 and ota2. ota0 contains the firmware upgrade via tusb and also checks for some pins voltage and a nvs flag to decide if it have to do the usb mass storage upgrade or not otherwise boot the ota1 or ota2 partiton based on nvs flag.
If yes it will show a drive on ...
If yes it will show a drive on ...
- Wed Mar 19, 2025 8:59 am
- Forum: General Discussion
- Topic: ESP32 bootloader, tusb_msc and adc example integration
- Replies: 1
- Views: 219
ESP32 bootloader, tusb_msc and adc example integration
I want to run the mass storage when bootloader starts without any app. Is it possible to integrate the tusb-msc example and bootloader of esp32 together? if yes how?
Along with this i want to integrate the nvs and adc component also to read the voltage level in bootloader. Please let me now how can ...
Along with this i want to integrate the nvs and adc component also to read the voltage level in bootloader. Please let me now how can ...