-
-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
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
Returns false, Please add example #3
Comments
Do you config correctly eepromconf.h ?Send to meOn 15 Jan 2020 14:16, pooyasa <[email protected]> wrote:Hi,
first of all, thank you for this library
I wanted to use this to store permanent data on my STM32F030K6T6
However, EE_Write() and EE_Writes() both return false on
if(HAL_FLASH_Program(FLASH_TYPEPROGRAM_WORD((i+StartVirtualAddress)*4)+_EEPROM_FLASH_PAGE_ADDRESS,(uint64_t)Data[i])!=HAL_OK)
which is on line 172 of eeprom.c
—You are receiving this because you are subscribed to this thread.Reply to this email directly, view it on GitHub, or unsubscribe.
|
Hi. I have the same problem with STM32F030K6T6. If the microcontroller is programmed in Erase Full Chip mode. Pay attention to the following code (Erase Full Chip mode):
eeConfig.h:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
first of all, thank you for this library
I wanted to use this to store permanent data on my STM32F030K6T6
However,
EE_Write()
andEE_Writes()
both return false onif(HAL_FLASH_Program(FLASH_TYPEPROGRAM_WORD((i+StartVirtualAddress)*4)+_EEPROM_FLASH_PAGE_ADDRESS,(uint64_t)Data[i])!=HAL_OK)
which is on line 172 of eeprom.c
what could be the cause of the problem?
The text was updated successfully, but these errors were encountered: