fix(esp8266): fix get MAC address from efuse output information error

This commit is contained in:
dongheng
2019-09-18 10:42:50 +08:00
parent 48f023ec2e
commit c533188b1a

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