Can't find Factory partition
Posted: Fri Mar 05, 2021 2:58 pm
Hello guys, i am trying to find the APP factory partition but with out succes,
i got always NULL return partition not found
when i try to search the OTA partition i can find it .
Here its my Code in loup function
any help, thank you
Here its my Code in loup function
i got always NULL return partition not found
when i try to search the OTA partition i can find it .
Here its my Code in loup function
any help, thank you
Here its my Code in loup function
Code: Select all
Serial.println("searching for partition");
esp_partition_iterator_t pi = esp_partition_find(ESP_PARTITION_TYPE_APP,ESP_PARTITION_SUBTYPE_APP_FACTORY,NULL); // searching for the factory partition
if(pi !=NULL)
Serial.println("Partition Found");
else Serial.println("Partition not found");
delay(5000);