STM32L412CB Flash Write/Erase fails first time only, then works OK.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-04-25 12:36 AM
uint32_t write_to_flash(uint8_t * buf, uint16_t length){
if((length)>2047) return 0xFFFFFFFF;
uint32_t base_addr=0;
base_addr=getHexAddressPage(DATA_PAGE);
uint32_t PAGEError;
/* Unlock the Flash to enable the flash control register access *************/
HAL_FLASH_Unlock();
__HAL_FLASH_CLEAR_FLAG(FLASH_FLAG_EOP | FLASH_FLAG_OPERR | FLASH_FLAG_PROGERR | FLASH_FLAG_WRPERR | FLASH_FLAG_PGAERR |
FLASH_FLAG_SIZERR | FLASH_FLAG_PGSERR | FLASH_FLAG_MISERR | FLASH_FLAG_FASTERR | FLASH_FLAG_OPTVERR);
__HAL_FLASH_CLEAR_FLAG(FLASH_FLAG_ALL_ERRORS);
/* Erase the user Flash area*/
/* Fill EraseInit structure*/
EraseInitStruct.TypeErase= FLASH_TYPEERASE_PAGES;
EraseInitStruct.Page = DATA_PAGE;
EraseInitStruct.NbPages= 1;
if (HAL_FLASHEx_Erase(&EraseInitStruct, &PAGEError) != HAL_OK)
{
DBGx("Flash Erase Fail\r\n");
HAL_FLASH_Lock();
return HAL_FLASH_GetError();
}
for (uint32_t i = 0; i < length; i += 8)
{
uint64_t data64 = u8touint64(buf+i);
PAGEError=HAL_FLASH_Program(FLASH_TYPEPROGRAM_DOUBLEWORD, i + base_addr, data64);
if (PAGEError != HAL_OK)
{
HAL_FLASH_Lock();
DBGx("2 IS_FLASH_PAGE(Page):%d at mem:%x,PAGEError:%x\r\n",IS_FLASH_PAGE(DATA_PAGE),DATA_PAGE,PAGEError);
return PAGEError;
}
}
HAL_FLASH_Lock();
DBGx("Flash Error:%d\r\n",PAGEError);
return PAGEError;
}
Above code is used to write flash
- Labels:
-
Flash
-
STM32L4 Series
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-04-25 9:07 AM
Which line return error?​
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-04-25 10:14 PM
At line 20, Flash Erase Fail.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-04-26 12:59 AM
Hello @DBhut.1​ ,
Could you please check the BankNumber, FirstPage, and NbOfPages.
For that, I recommend you to get inspired from the available FLASH_EraseProgram example in STM32CubeL4 package.
I hope this help you!
Kaouthar
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-04-26 3:05 AM
There is no page issue, as Flash work after first time erase fail, and working fine since 5 months. Only issue is After upload code to fresh MCU, and perform Flash Write, It fails, and we have to perform operation again. So, there may be issue with code or something else, which prevents, Flash to erase, after 1st time only.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-04-26 4:24 AM
Hello @DBhut.1​ ,
Thank you for this clarification.
Do you have the same issue when you using the ST example?
Kaouthar
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-04-26 4:37 AM
> After upload code to fresh MCU
How do you do that, exactly?
Do you power-down/power-up after finishing code uploading to the mcu?
JW
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-04-26 5:56 AM
There's another error bit you're not clearing.
Instrument code so you know initial register states and WHY the Erase reportedly fails.
Up vote any posts that you find helpful, it shows what's working..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-04-26 10:18 PM
I will try thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-04-26 10:20 PM
No, I don't do any Powerup/down, just flash the code, and write my configuration default values of data to flash, for future use.
