]> granicus.if.org Git - esp-idf/commitdiff
esp32: do not try to load PHY data if fail to open NVS
authorXiaXiaotian <xiaxiaotian@espressif.com>
Mon, 22 Oct 2018 12:46:14 +0000 (20:46 +0800)
committerbot <bot@espressif.com>
Mon, 29 Oct 2018 02:24:58 +0000 (02:24 +0000)
components/esp32/phy_init.c

index c15840d582144a0e2a21dcd0d807fdf4c244f919..dcc3b417e10e7a9314db0c2365f0ec8a34045f20 100644 (file)
@@ -446,6 +446,7 @@ esp_err_t esp_phy_load_cal_data_from_nvs(esp_phy_calibration_data_t* out_cal_dat
     if (err == ESP_ERR_NVS_NOT_INITIALIZED) {
         ESP_LOGE(TAG, "%s: NVS has not been initialized. "
                 "Call nvs_flash_init before starting WiFi/BT.", __func__);
+        return err;
     } else if (err != ESP_OK) {
         ESP_LOGD(TAG, "%s: failed to open NVS namespace (0x%x)", __func__, err);
         return err;