mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-05-22 01:27:11 +08:00
fix(esp8266): fix get MAC address from efuse output information error
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user