mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-07-02 06:38:00 +08:00
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:
@ -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