Skip to content

Commit 653d20d

Browse files
committed
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
2 parents d150552 + c533188 commit 653d20d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/esp8266/source/system_api.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ esp_err_t esp_base_mac_addr_get(uint8_t *mac)
5050
uint8_t null_mac[6] = {0};
5151

5252
if (memcmp(base_mac_addr, null_mac, 6) == 0) {
53-
ESP_LOGI(TAG, "Base MAC address is not set, read default base MAC address from BLK0 of EFUSE");
53+
ESP_LOGI(TAG, "Base MAC address is not set, read default base MAC address from EFUSE");
5454
return ESP_ERR_INVALID_MAC;
5555
}
5656

0 commit comments

Comments
 (0)