-
The ProblemAfter a brownout the system is no longer reachable, but seems to work (takes pictures) Device does not join WLAN, SD card and wlan.ini correct Serial log gives clues: normal startup, during startup later on and later on: seems that default MAC address was corrupted. Web search seems not to show a way to repair Versionv15.7.0 LogfileSystem not Accessible by WLANExpected BehaviorIs there a way to recover from that? ScreenshotsNo response Additional Contextseems that MAC issue is not uncommon: unfortunately beyond my capacity to change the code in the repository and do test build .... |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
|
playing with espefuse.py tool shows culprit: unfortunately these are on time time programable.... so as suggested:
|
Beta Was this translation helpful? Give feedback.
-
|
in sdkconfig.defaults or sdkconfig.esp32cam.defaults #
# MAC Config
#
CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA=y
CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP=y
CONFIG_ESP_MAC_ADDR_UNIVERSE_BT=y
CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH=y
CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR=y
CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES=4
# CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_TWO is not set
CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR=y
CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES=4
CONFIG_ESP_MAC_IGNORE_MAC_CRC_ERROR=y #<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
# CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC is not set
# end of MAC Config |
Beta Was this translation helpful? Give feedback.
-
|
Thank you, the change eliminates the problem. |
Beta Was this translation helpful? Give feedback.
Have you tried whether this change also eliminates this problem?
I found this info after a short search on the Internet, but I don't know if this change is only required.
manual-setup
remote-setup
update