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);