Search found 143 matches

by gunar.kroeger
Wed Aug 01, 2018 3:12 pm
Forum: General Discussion
Topic: Changing running app partition without reseting ESP
Replies: 5
Views: 8748

Re: Changing running app partition without reseting ESP

Hmm interesting. So, a simple solution would be to boot on ota0 partition if there was a "virgin power on" so that if this partition calls esp_reset() it would fall into another reason and start the ota1 partition binary. Is this supported in the current bootloader by changing settings in menuconfig...
by gunar.kroeger
Mon Jul 30, 2018 2:31 pm
Forum: General Discussion
Topic: Changing running app partition without reseting ESP
Replies: 5
Views: 8748

Re: Changing running app partition without reseting ESP

Thank you for the reply try and think through discrete applications that do one thing and how to choose which application runs. What are the options on how to switch the running application? I know that there is a way to use GPIO to define which app starts but that is not an option for us. The other...
by gunar.kroeger
Fri Jul 27, 2018 7:09 pm
Forum: General Discussion
Topic: Changing running app partition without reseting ESP
Replies: 5
Views: 8748

Changing running app partition without reseting ESP

Is there a way to jump to another app without using esp_err_t esp_ota_set_boot_partition(const esp_partition_t* partition); and resetting ESP? This is our partition table: # Name, Type, SubType, Offset, Size nvs, data, nvs, 0x9000, 0x4000 otadata, data, ota, 0xd000, 0x2000 phy_init, data, phy, 0xf00...