From c533188b1a4c2199de5440a29de92ca58302af8a Mon Sep 17 00:00:00 2001 From: dongheng Date: Wed, 18 Sep 2019 10:42:50 +0800 Subject: [PATCH] fix(esp8266): fix get MAC address from efuse output information error --- components/esp8266/source/system_api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp8266/source/system_api.c b/components/esp8266/source/system_api.c index 92f1bb28..f3527845 100644 --- a/components/esp8266/source/system_api.c +++ b/components/esp8266/source/system_api.c @@ -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; }