Merge branch 'bugfix/fix_get_mac_info' into 'master'

esp8266: fix get MAC address from efuse output information error

See merge request sdk/ESP8266_RTOS_SDK!1101
This commit is contained in:
Dong Heng
2019-09-19 10:27:29 +08:00

View File

@ -50,7 +50,7 @@ esp_err_t esp_base_mac_addr_get(uint8_t *mac)
uint8_t null_mac[6] = {0};
if (memcmp(base_mac_addr, null_mac, 6) == 0) {
ESP_LOGI(TAG, "Base MAC address is not set, read default base MAC address from BLK0 of EFUSE");
ESP_LOGI(TAG, "Base MAC address is not set, read default base MAC address from EFUSE");
return ESP_ERR_INVALID_MAC;
}