Search found 2 matches

by ThomasSt
Tue Jun 11, 2024 3:01 pm
Forum: ESP-IDF
Topic: change flashing target address
Replies: 0
Views: 318

change flashing target address

Hi all I have a VS Code ESP project and want to flash the application to the OTA_0 partition. Where can I change the partition, where the application shall be flashed? (Where can I change the target address in /build/flash_args file? partitions.csv: ... myBL, app, factory, 0x10000, 1M, appl, app, ot...
by ThomasSt
Fri Jun 07, 2024 12:22 pm
Forum: ESP-IDF
Topic: How to use BOOTLOADER functions outside of BOOTLOADER
Replies: 1
Views: 375

How to use BOOTLOADER functions outside of BOOTLOADER

Hi all I want to use Bootloader functions outside of the bootloader, means I want to use the function bootloader_load_image_no_verify() in another application. How can I do that? I found out that I have to define the BOOTLOADER_BUILD macro. Then I had to fix some linker problems. Now my application ...