We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The code seems designed to save the MAC address in both EEPROM and Flash for better stability
However, the operation of the erase_storage() function is controlled by USE_EXT_EEPROM, which ends up deleting the data stored in the EEPROM.
As a result, the MCU cannot read the MAC address from the EEPROM, causing it to behave abnormally."
\Projects\S2E_Boot\src\PlatformHandler\storageHandler.c -- 76
The suggested solution is as follows:
Disable the erase_storage(STORAGE_MAC) code.
Make sure the MAC address is properly saved in both Flash and EEPROM. If one side's MAC address is missing, read it from the other side and sync them.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The code seems designed to save the MAC address in both EEPROM and Flash for better stability
However, the operation of the erase_storage() function is controlled by USE_EXT_EEPROM, which ends up deleting the data stored in the EEPROM.
As a result, the MCU cannot read the MAC address from the EEPROM, causing it to behave abnormally."
\Projects\S2E_Boot\src\PlatformHandler\storageHandler.c -- 76
The suggested solution is as follows:
Disable the erase_storage(STORAGE_MAC) code.
Make sure the MAC address is properly saved in both Flash and EEPROM. If one side's MAC address is missing, read it from the other side and sync them.
The text was updated successfully, but these errors were encountered: