example/storage: fix find_partition function when no partition is found

pull/7261/head
pedro.minatel 2021-01-25 09:37:23 +00:00 zatwierdzone przez bot
rodzic bd1578f2e3
commit 5c1d19ad02
1 zmienionych plików z 7 dodań i 1 usunięć

Wyświetl plik

@ -47,8 +47,14 @@ static void find_partition(esp_partition_type_t type, esp_partition_subtype_t su
{
ESP_LOGI(TAG, "Find partition with type %s, subtype %s, label %s...", get_type_str(type), get_subtype_str(subtype),
name == NULL ? "NULL (unspecified)" : name);
const esp_partition_t * part = esp_partition_find_first(type, subtype, name);
ESP_LOGI(TAG, "\tfound partition '%s' at offset 0x%x with size 0x%x", part->label, part->address, part->size);
if(part != NULL) {
ESP_LOGI(TAG, "\tfound partition '%s' at offset 0x%x with size 0x%x", part->label, part->address, part->size);
} else {
ESP_LOGE(TAG, "\tpartition not found!");
}
}
void app_main(void)