STM32 Flash Programming: Erase, Write & Read (Page & Sector)
Internal flash in STM32 isn’t just for firmware, it’s also where you store calibration values, configuration parameters, device IDs, counters, and any data that must survive a power cycle. But flash works differently from RAM: you can’t overwrite it directly, erasing works on fixed blocks, and writing to the wrong address can corrupt your running firmware.
This tutorial covers STM32 flash programming using the HAL library for both major flash layouts. The first section covers page-based flash on STM32F1, M0, and M3 devices, where pages are small (1–2 KB) and easy to manage. The second section covers sector-based flash on STM32F4 and H7 devices, where sectors are larger and require more careful address planning. Both sections include complete write, read, and erase code for arrays, strings, integers, and floats — verified with a memory viewer.

STM32 Flash Memory: How It Works
When you work with STM32 microcontrollers, flash memory becomes very important. It not only stores your program code but can also keep data like settings, sensor calibration values, or logs. Since flash memory has limited write cycles and follows strict rules for erasing and writing, you need to understand how it works before you start using it. In this STM32 Flash Programming tutorial, we will first learn the basics of flash memory and then see how STM32 handles it with pages and sectors.
What is Flash Memory?
Flash memory is a type of non-volatile storage. This means it can hold data even when the power is off, unlike RAM which loses data after reset. In STM32 microcontrollers, your code runs directly from flash memory. You can also use free areas of flash to save important data that must remain safe after a restart or power loss.
However, flash memory works differently from normal RAM. You cannot just overwrite data directly. First, you must erase that memory block and then write new values. Also, flash erase operations happen in blocks instead of single bytes. That’s why STM32 uses either pages or sectors for organizing flash memory.
Page-Based vs Sector-Based Flash
STM32 devices use two common flash layouts, and knowing which one your MCU uses is very important.
- Page-Based Flash (STM32F1, STM32 M0 series):
In these controllers, flash memory is divided into small pages, usually 1 KB or 2 KB in size. You can erase and write one page at a time. This makes the process simple. However, you must plan carefully, because erasing a page clears everything inside it. So, if you only want to change one variable, you still erase the whole page. - Sector-Based Flash (STM32F4, STM32H7 series):
Advanced controllers use sectors instead of pages. A sector is much larger and can range from a few KB to several tens of KB. The good part is that you can manage memory more flexibly. The challenge is that when you erase a sector, all the data inside it is lost. So you must design your data storage wisely to avoid losing important values.
Basically, page-based flash is smaller and easier to manage, while sector-based flash gives more flexibility but requires careful planning. Understanding this difference will help you use STM32 Flash Programming correctly in your projects.
The table below compare the Page-Based vs Sector-Based Flash memories in STM32.
| Feature | Page-Based Flash (STM32F1, STM32 M0) | Sector-Based Flash (STM32F4, STM32H7) |
|---|---|---|
| Memory Unit | Pages | Sectors |
| Typical Size | 1 KB – 2 KB per page | Few KB up to tens of KB per sector |
| Erase Granularity | Erases one page at a time | Erases one sector at a time |
| Simplicity | Simple to use, easier to manage | More complex, needs careful planning |
| Data Update | Small data easier to update, but erases full page | Small updates may require erasing large sector |
| Best For | Low-end MCUs, small applications | High-end MCUs, large applications |
The single biggest mistake with sector-based flash: sectors are large (the STM32F446 has sectors ranging from 16 KB to 128 KB). Writing a 4-byte value to a sector that also contains other data you need will erase all of it. Always place your data storage in a dedicated sector that no other code occupies.
HAL Flash Operations: Unlock, Erase, Write, Read
All write and erase operations require unlocking flash first. Reading does not.
Unlock / Lock:
HAL_FLASH_Unlock(); // Enable write/erase access
// ... operations ...
HAL_FLASH_Lock(); // Re-protect after finishingErase (page or sector, via HAL_FLASHEx_Erase()):
HAL_FLASHEx_Erase(&EraseInitStruct, &PageOrSectorError);Write word by word:
HAL_FLASH_Program(FLASH_TYPEPROGRAM_WORD, address, data);
// Increment address by 4 per word (use 2 for half-word, 8 for double-word)Read — direct pointer dereference, no unlock needed:
uint32_t value = *(__IO uint32_t*)address;STM32 Page-Based Flash: F1, M0, M3 Series
This section uses the STM32F103 (BluePill). Its flash is organized into 128 pages of 1 KB each, totalling 128 KB starting at 0x08000000. You can see its flash memory layout in the image below.
As shown above, the main flash memory in the STM32F103 is divided into 128 pages, with each page sized at 1 KB, giving a total of 128 KB of flash memory.
When programming flash, it’s important to start as low as possible in memory. The reason is that the beginning of the flash is already used by the program that is currently running on the microcontroller. I have explained this in detail in the video at the end of the post, so you can check that out for a visual explanation.
Since each page can store 1024 bytes and I don’t have much data to write, I will use the last page of flash memory, which ranges from 0x0801FC00 to 0x0801FFFF.
Write Function (Page-Based)
Below is the function to write the data into the Flash.
uint32_t Flash_Write_Data (uint32_t StartPageAddress, uint32_t *Data, uint16_t numberofwords)
{
static FLASH_EraseInitTypeDef EraseInitStruct;
uint32_t PAGEError;
int sofar=0;
/* Unlock the Flash to enable the flash control register access *************/
HAL_FLASH_Unlock();
/* Erase the user Flash area*/
uint32_t StartPage = GetPage(StartPageAddress);
uint32_t EndPageAdress = StartPageAddress + numberofwords*4;
uint32_t EndPage = GetPage(EndPageAdress);
/* Fill EraseInit structure*/
EraseInitStruct.TypeErase = FLASH_TYPEERASE_PAGES;
EraseInitStruct.PageAddress = StartPage;
EraseInitStruct.NbPages = ((EndPage - StartPage)/FLASH_PAGE_SIZE) +1;
if (HAL_FLASHEx_Erase(&EraseInitStruct, &PAGEError) != HAL_OK)
{
/*Error occurred while page erase.*/
return HAL_FLASH_GetError ();
}
/* Program the user Flash area word by word*/
while (sofar<numberofwords)
{
if (HAL_FLASH_Program(FLASH_TYPEPROGRAM_WORD, StartPageAddress, Data[sofar]) == HAL_OK)
{
StartPageAddress += 4; // use StartPageAddress += 2 for half word and 8 for double word
sofar++;
}
else
{
/* Error occurred while writing data in Flash memory*/
return HAL_FLASH_GetError ();
}
}
/* Lock the Flash to disable the flash control register access (recommended
to protect the FLASH memory against possible unwanted operation) *********/
HAL_FLASH_Lock();
return 0;
}The function Flash_Write_Data takes the following parameters
- @ StartPageAddress is the address of the Start page, or memory in the page, from where you want to start writing the data.
- @ Data is the pointer to the 32 bit data array, that you want to write into the flash.
- @ numberofwords is the number of words, that you want to write in the memory.
The Flash_Write_Data function writes an array of 32-bit data (uint32_t) to STM32 Flash memory using page-level operations. It works as follows:
- Unlock Flash: Enables access to the Flash control registers.
- Determine pages: Calculates the start and end Flash pages based on the start address and number of words.
- Erase pages: Clears the required pages before writing new data.
- Program Flash: Writes data word by word to the Flash memory.
- Error handling: Returns an error code if erasing or writing fails.
- Lock Flash: Disables write access to protect memory after programming.
Read Function (Page-Based)
The function Flash_Read_Data provides a simple way to retrieve data from STM32 page-based flash memory.
void Flash_Read_Data (uint32_t StartPageAddress, uint32_t *RxBuf, uint16_t numberofwords)
{
while (1)
{
*RxBuf = *(__IO uint32_t *)StartPageAddress;
StartPageAddress += 4;
RxBuf++;
if (!(numberofwords--)) break;
}
}The Flash_Read_Data function reads 32-bit data (uint32_t) from STM32 Flash memory. It works like this:
- Read word by word: Accesses Flash memory starting from
StartPageAddressand copies each 32-bit word into the provided bufferRxBuf. - Increment pointers: Moves the Flash address and buffer pointer forward by 4 bytes after each read.
- Repeat: Continues until the specified
numberofwordsis read.
Usage Example (Page-Based)
To test the Flash operations, we will first write some data into the Flash and read it back.
char *data = "hello FLASH from ControllerTech\
This is a test to see how many words can we work with";
uint32_t data2[] = {0x1,0x2,0x3,0x4,0x5,0x6,0x7,0x8,0x9};
uint32_t Rx_Data[30];
char string[100];
int number = 123;
float val = 123.456;
float RxVal;
Flash_Write_Data(0x08004410 , (uint32_t *)data2, 9);
Flash_Read_Data(0x08004410 , Rx_Data, 10);
int numofwords = (strlen(data)/4)+((strlen(data)%4)!=0);
Flash_Write_Data(0x08004810 , (uint32_t *)data, numofwords);
Flash_Read_Data(0x08004810 , Rx_Data, numofwords);
Convert_To_Str(Rx_Data, string);
Flash_Write_NUM(0x08005C10, number);
RxVal = Flash_Read_NUM(0x08005C10);
Flash_Write_NUM(0x08012000, val);
RxVal = Flash_Read_NUM(0x08012000);In this example, we are writing and reading different types of data to the STM32 flash.
- Character Strings:
Thedatastring contains multiple words. We calculate the number of 32-bit words needed usingstrlen(data)/4and write it to flash withFlash_Write_Data(). Then we read it back usingFlash_Read_Data()and convert it to a readable string withConvert_To_Str(). - Integer and Float Values:
The integernumberand floatvalare written and read usingFlash_Write_NUM()andFlash_Read_NUM(). The values are stored in specific flash addresses and retrieved later for use. - Array of 32-bit Data:
The arraydata2is also written to flash and then read back intoRx_Datafor verification.
Result & Video walkthrough
The image below shows the STM32 flash memory content after writing both an array of numbers and a string using HAL functions.
- In the first part (top table), you can see the 32-bit integer array
data2written to addresses0x08004410onward. Each cell represents a 32-bit word stored in flash. The array values0x1, 0x2, … 0x9are clearly visible. - In the second part (bottom table), the string
"hello FLASH from ControllerTech..."is stored starting at address0x08004810. Each group of 4 bytes is displayed in hexadecimal, showing how the string is stored in 32-bit words. On the right, the text representation is also visible, confirming that the string is written correctly.
This demonstrates how HAL functions write arrays and strings to flash memory, and how you can verify the stored data using a memory viewer or debugger.
STM32 Page based Flash Programming — Video Tutorial
This video walks through the complete STM32 Page based Flash Programming — How to erase pages, write data, and read it back in a safe and reliable way.
STM32 Sector-Based Flash: F4 and H7 Series
This section covers the STM32F4 and STM32H7 families, where flash is organized into sectors of varying sizes. The STM32F446RE has 7 sectors; other F4 devices have 11, 15, or 23. The GetSector() helper function maps any address to its sector number — this is what makes the write function portable across the whole family.
The image below shows the Sector-Based Flash Memory distribution in the STM32F4.
In the STM32F446RE, the Flash memory is divided into 7 sectors, each with a different size. Other STM32 microcontrollers may have 11, 15, or even 23 sectors. This STM32 sector-based Flash programming code works for all these controllers, no matter how many sectors they have, making it easy to erase, write, and manage Flash memory safely.
Write Function (Sector-Based)
The function Flash_Write_Data writes the data to the Flash memory.
uint32_t Flash_Write_Data (uint32_t StartSectorAddress, uint32_t *Data, uint16_t numberofwords)
{
static FLASH_EraseInitTypeDef EraseInitStruct;
uint32_t SECTORError;
int sofar=0;
/* Unlock the Flash to enable the flash control register access *************/
HAL_FLASH_Unlock();
/* Erase the user Flash area */
/* Get the number of sector to erase from 1st sector */
uint32_t StartSector = GetSector(StartSectorAddress);
uint32_t EndSectorAddress = StartSectorAddress + numberofwords*4;
uint32_t EndSector = GetSector(EndSectorAddress);
/* Fill EraseInit structure*/
EraseInitStruct.TypeErase = FLASH_TYPEERASE_SECTORS;
EraseInitStruct.VoltageRange = FLASH_VOLTAGE_RANGE_3;
EraseInitStruct.Sector = StartSector;
EraseInitStruct.NbSectors = (EndSector - StartSector) + 1;
/* Note: If an erase operation in Flash memory also concerns data in the data or instruction cache,
you have to make sure that these data are rewritten before they are accessed during code
execution. If this cannot be done safely, it is recommended to flush the caches by setting the
DCRST and ICRST bits in the FLASH_CR register. */
if (HAL_FLASHEx_Erase(&EraseInitStruct, &SECTORError) != HAL_OK)
{
return HAL_FLASH_GetError ();
}
/* Program the user Flash area word by word
(area defined by FLASH_USER_START_ADDR and FLASH_USER_END_ADDR) ***********/
while (sofar<numberofwords)
{
if (HAL_FLASH_Program(FLASH_TYPEPROGRAM_WORD, StartSectorAddress, Data[sofar]) == HAL_OK)
{
StartSectorAddress += 4; // use StartPageAddress += 2 for half word and 8 for double word
sofar++;
}
else
{
/* Error occurred while writing data in Flash memory*/
return HAL_FLASH_GetError ();
}
}
/* Lock the Flash to disable the flash control register access (recommended
to protect the FLASH memory against possible unwanted operation) *********/
HAL_FLASH_Lock();
return 0;
}The Flash_Write_Data function writes an array of 32-bit data (uint32_t) to STM32 Flash memory starting from a given address. It works in these steps:
- Unlock Flash: Enables access to Flash control registers.
- Calculate sectors: Determines which Flash sectors need erasing based on the start address and number of words.
- Erase sectors: Clears the necessary sectors before writing.
- Program Flash: Writes data word by word (
uint32_t) to the Flash memory. - Error handling: Returns an error code if erasing or writing fails.
- Lock Flash: Disables Flash write access to protect memory after programming.
Read Function (Sector-Based)
The function Flash_Read_Data provides a simple way to retrieve data from STM32 sector-based Flash memory.
void Flash_Read_Data (uint32_t StartSectorAddress, uint32_t *RxBuf, uint16_t numberofwords)
{
while (1)
{
*RxBuf = *(__IO uint32_t *)StartSectorAddress;
StartSectorAddress += 4;
RxBuf++;
if (!(numberofwords--)) break;
}
}The Flash_Read_Data function reads 32-bit data (uint32_t) from STM32 Flash memory. It works like this:
- Read word by word: Accesses Flash memory starting from
StartPageAddressand copies each 32-bit word into the provided bufferRxBuf. - Increment pointers: Moves the Flash address and buffer pointer forward by 4 bytes after each read.
- Repeat: Continues until the specified
numberofwordsis read.
Usage Example (Sector-Based)
To test the Flash operations, we will first write some data into the Flash and read it back.
char *data = "hello FLASH from ControllerTech\
This is a test to see how many words can we work with";
uint32_t data2[] = {0x1,0x2,0x3,0x4,0x5,0x6,0x7,0x8,0x9};
uint32_t Rx_Data[30];
char string[100];
int number = 123;
float val = 123.456;
float RxVal;
Flash_Write_Data(0x08004100 , (uint32_t *)data2, 9);
Flash_Read_Data(0x08004100 , Rx_Data, 10);
int numofwords = (strlen(data)/4)+((strlen(data)%4)!=0);
Flash_Write_Data(0x08008100 , (uint32_t *)data, numofwords);
Flash_Read_Data(0x08008100 , Rx_Data, numofwords);
Convert_To_Str(Rx_Data, string);
Flash_Write_NUM(0x0800C100, number);
RxVal = Flash_Read_NUM(0x0800C100);
Flash_Write_NUM(0x0800D100, val);
RxVal = Flash_Read_NUM(0x0800D100);This example shows how to store and retrieve arrays, strings, integers, and floats in STM32 Flash memory using page/sector-based programming.
Define data and buffers:
datais a string to store in Flash.data2is an array of 32-bit integers.Rx_Datais a buffer to read Flash data back.string,number, andvalare variables to demonstrate storing and reading different data types.
Write and read integer array:
Flash_Write_Data(0x08004100, data2, 9);writes 9 words fromdata2to Flash.Flash_Read_Data(0x08004100, Rx_Data, 10);reads back 10 words intoRx_Data.
Read and write string:
- Calculates
numofwordsneeded to store the string (rounded up to 32-bit words). Flash_Write_Data(0x08008100, data, numofwords);writes the string to Flash.Flash_Read_Data(0x08008100, Rx_Data, numofwords);reads it back.Convert_To_Str(Rx_Data, string);converts the read words back to a string.
Write and read numbers:
Flash_Write_NUMandFlash_Read_NUMstore and retrieve integer (number) and float (val) values from Flash.
Result & Video Walkthrough
The image below shows the STM32 flash memory content after writing both an array of numbers and a string using HAL functions.
- In the first part (top table), you can see the 32-bit integer array
data2written to addresses0x08004410onward. Each cell represents a 32-bit word stored in flash. The array values0x1, 0x2, … 0x9are clearly visible. - In the second part (bottom table), the string
"hello FLASH from ControllerTech..."is stored starting at address0x08004810. Each group of 4 bytes is displayed in hexadecimal, showing how the string is stored in 32-bit words. On the right, the text representation is also visible, confirming that the string is written correctly.
This demonstrates how HAL functions write arrays and strings to flash memory, and how you can verify the stored data using a memory viewer or debugger.
STM32 Sector based Flash Programming — Video Tutorial
This video walks through the complete STM32 Sector based Flash Programming — How to erase pages, write data, and read it back in a safe and reliable way.
STM32 Flash Programming — Frequently Asked Questions
No — but only partially. You can write to an erased (all 0xFF) location without erasing again, as long as you're only setting bits from 1 to 0. However, you cannot change a 0 back to a 1 without erasing the whole page or sector first. In practice, treat each page/sector as write-once between erase cycles. If you need to update a value, erase the full block and rewrite everything.
This is almost always caused by leftover flash error flags. Add __HAL_FLASH_CLEAR_FLAG(FLASH_FLAG_ALL_ERRORS) immediately after HAL_FLASH_Unlock() and before the erase call. This clears any persistent flags from previous operations and is particularly important on STM32H5, G4, and L4 devices.
These devices organize flash into dual banks with different page sizes (e.g. 2 KB pages on G4). The GetPage() calculation and the EraseInitStruct fields differ — you must also specify the bank (Banks field in the erase struct). Forcing single-bank mode via option bytes is one workaround; the other is handling both banks explicitly. Always check your device's reference manual for its specific flash layout.
Yes, with a constraint: you cannot execute from a flash page/sector while it is being erased or written. On single-bank devices this means the CPU stalls during flash operations (code execution from flash is halted). On dual-bank devices, you can execute from Bank 1 while erasing/writing Bank 2. For time-critical applications, consider running the flash write routine from RAM using the __RAM_FUNC attribute.
The word being written at that moment is likely corrupted — it may contain partial data that is neither the old value nor the new one. The rest of the already-written words in that operation are typically safe. For reliable storage of critical data, use a write-verify pattern (read back and compare after every write) and maintain at least two copies of important data in separate pages/sectors.
Conclusion
In this tutorial, you learned how STM32 flash memory works and how to safely erase, write, and read data using the HAL library — covering both page-based devices (F1, M0, M3) and sector-based devices (F4, H7). The helper functions Flash_Write_Data(), Flash_Read_Data(), Flash_Write_NUM(), and Flash_Read_NUM() give you a reusable foundation for storing any data type: arrays, strings, integers, and floats.
The most important things to keep in mind going forward: always write to addresses well clear of your firmware, never assume you can overwrite without erasing first, clear flash error flags between operations on newer STM32 families, and on sector-based devices, dedicate a full sector to data storage to avoid collateral erasure.
This foundation is what the STM32 custom bootloader series builds directly on — the next logical step if you want to use flash for in-application firmware updates (OTA), application validation, or jump-to-application logic.
Download STM32 Flash Programming Project Files
Complete HAL project files for page-based (STM32F1/M0) and sector-based (STM32F4/H7) flash programming — includes erase, write, and read functions for arrays, strings, integers, and floats. Free to download — support the work if it helped you.
Browse STM32 External Flash Tutorials
W25Q Flash Series Part 2 – Read Data from Device
W25Q Flash Series Part 3 – How to Erase Sectors
W25Q Flash Series Part 4 – How to Program Pages
W25Q Flash Series Part 5 – how to update sectors
W25Q Flash Series Part 6 – Integers floats and 32bit Data
Arun is an embedded systems engineer with 10+ years of experience in STM32, ESP32, and AVR microcontrollers. He created ControllersTech to share practical tutorials on embedded software, HAL drivers, RTOS, and hardware design — grounded in real industrial automation experience.
Recommended Tools
Essential dev tools
Categories
Browse by platform




Works well on STM32G474, thanks for the post.
Only one observation: Flash_Write_Data() if there is an HAL_FLASH_Program fails you return before locking the flash.
hey im using stm32wle5cb mcu , i can read the flash but when erasing to write earse operation it throughs error. is it because any protection or something need help
I was facing a similar error… I was able to write the first time and erase the sector… but I could only write to the FLASH again if I restarted the MCU (STM32H563RIT6). And I managed to solve this problem, obligatorily, by resetting the flags before erasing and writing.
Thanks, this was very helpful for the STM32H743…Do you have this for the STM32H563 micro as well??
It is not possible to write separate code for all the MCUs. Generally the H7 series follow the similar logic. You can test the same with H563 as well.
Hello Thanks for the tutorial.
Writing and reading is working for me, BUT when i then try to program again my MCU after a writing the prog/debugger can complete anymore the interaction.
I see error
Error message from debugger back end:
Error finishing flash operation
Error finishing flash operation
in order to be able to program/debug again i have to make a full erase and comment the writing function and reprogram.
I’m using a stm32F439 ZI.
Thanks again!
send email at chayaporngaraipoom@gmail.com
Hey i have similar issue and tried to email but the email does ot exist
Thanks for the great tutorial. Helped me a lot. I noticed one minor bug in Flash_Read_Data. It should be
if (!(–numberofwords)) break;
instead of
if (!(numberofwords–)) break;
Otherwise there will be one additional loop run that might cause problems.
Thanks for this great tutorial. Helped me a lot. I noticed one minor bug in Flash_Read_Data. The line
if (!(numberofwords–)) break;
should be prefix decrement. So it should be changed to
if (!(–numberofwords)) break;
Otherwise there is one extra loop run.
I’m using your code from Github and I’m using STM32F103RC as well but the code didn’t work. I’m using the address 0x08005C10 and 0x08005D10. Write NUM function did not actually wrote anything into the flash (as I checked with the monitor it didn’t) and read NUM function only returns 0.
Hello Sir,
We are using STM32L432 and we are always getting error code as 128 that is FLASH_FLAG_MISERR. There are 2 changes done in our software.
EraseInitStruct does not have PageAddress element
EraseInitStruct.PageAddress = StartPage;
This was updated as
EraseInitStruct.Page = 127;
This error FLASH_FLAG_MISERR is appeared as part of the Page erase process. the following function output was 1.
status = FLASH_WaitForLastOperation((uint32_t)FLASH_TIMEOUT_VALUE);
The following error output was 128
error = (FLASH->SR & FLASH_FLAG_SR_ERRORS);
Do we have the example software for page erase for STM32L432 please?
Show less
Hello Sir,
We could write once and we are anot able to erase and update the last page. It looks like the flash is write protected. I meant we can compile and flash the chip. but we are not able erase the last page in our application software. How do we know the flash is write protected and How to clear the write protect before page erase? Could you please help us out?
I’m working on STM32H750 with FreeRTOS and code not work, the function HAL_FLASHEx_Erase error, the function run to FLASH_WaitForLastOperation and return HAL_TIMEOUT.
When i comment:
if (HAL_FLASHEx_Erase(&EraseInitStruct, &SECTORError) != HAL_OK)
{
return HAL_FLASH_GetError();
}
program work fine.
What the happen, I’m a little confused here. Do you have any suggest for me.
Hello,
I would like to know, Why a STM32 board binary code doesn’t run after I just flashed back to it of what I just red from the same board by using STM32 Cube Programmer?
Hi. It’s awesome tutorial. I have one question here.) What will happen to data in flash if power off and on
2) what will happen, if we flash again with read only function in main loop
Hi! Awesome tutorial, thanks for proper insight 🙂
Short question, why do you need to typecast again the pointer to array (uint32_t *) in the function Flash_Write_Data?
I am a little confused here 😀
Thanks!!
There is no need for that. I was testing with some strings (chars), so I might have done it because of that.
Hi,
I’m using STM32F429. I found your flash_sector_f4.c perfectly suited to my initial needs of storing binary data in a sector of flash. Thank you!
Now I’d like to be able to overwrite my running firmware with a new application after I’ve gotten it into RAM. I can’t use the built in bootloader. Is there an example of that anywhere? Thanks, Mike
You should check out this video series https://youtu.be/OkUQ3iMmiYQ
Hello,
I use STM32H725.
I need to implement Flash_Write_Data() at Low Level , without HAL .
Does anyone have low-level realization experience Write flash?
hello I have a problem
I can’t find the Flash_Write_NUM and Flash_Read_NUM functions
Para stm32F030C8, sua memória flash é páginas, mas quantas?
gracias
Hello
I have a question, and how can I get the free memory space I have left?
is there a HAL command?
Greetings from Colombia, your projects have helped me a lot
I’m work with the STM32F429 and stmcubeide. I’ve a error – conflicting types for ‘Flash_Write_Data’- when call a function uint32_t Flash_Write_Data (uint32_t StartSectorAddress, uint32_t *Data, uint16_t numberofwords)
{
int numofwords = (strlen(data)/4)+((strlen(data)%4)!=0);
Flash_Write_Data(0x08008100 , (uint32_t *)data, numofwords);
Flash_Read_Data(0x08008100 , Rx_Data, numofwords);
sprintf(teste_data2_char, “%d”, Rx_Data);
HAL_UART_Transmit(&huart1, (uint8_t *) teste_data2_char, strlen(teste_data2_char),500);
You are using older one.
Click the download button, it will take you to the github.
Download according to your controller
.
Hello sir Thank you very much for this code. I am working with the STM32G474RE. With your code I manage to write it but the delete is still not possible, what should I change or add? Thanks
which one did you used ?
hello dear
I used the “Flash Page Type”.
I do not know why I manage to write, but Erasing does not work, I always have to go through STM32 ST-LINK utility to be able to delete. could you please help me ?
The memory division in G4 is different, so you can’t use it directly.
It’s further divided into BANKS.
Maybe you can disable the banks and force the controller to use single BANK.
Also check the page size during debug.
unfortunately I’m only a beginner in this field, I don’t know how to force my controller to use the single Bank. Thank you once again for your time and your answers
Check your reference manual to know how to do that.
I am also working with STM32G474RE. Could you please share your insights or maybe even your code how you managed to write to the flash? Thank you so much!
hello sir .. i am new to this 32 bit this controller. i am writing code for stm32f207. while writing the flash ,controller gets stops in erase function, what is the problem , i am using base address is sector a10 and end address is sector11 .actually my flash data is 150 bytes only
If this FLASH_PAGE would be used with STM32L4 series where page size is 64bits, how big of a modification would this need? Thank you.
I also want to use the program for stm32L4 series please help as i got error while writing in similar fashion
Thanks to the Admin for sharing the Knowledge! Did someone manage to change the code for a STM32L4xx, in my case L452 (512x1Kb Pages)?
i write this code in keil MDK but has error for “(strlen(DATA_32)”
ERROR text:
(..\Src\FlASH_PAGE.c(109): error: #167: argument of type “uint32_t *” is incompatible with parameter of type “const char *”)
change the type inside strlen function
How can I use this code if my data is uint8_t?
I cant use the read function for ota purposes because in your function it only breaks when there is an empty cell. otherwise it runs until the end!!!!!!!!!!!!!!!!
therefore I added size parameter.
Hi!
I want to report some bug in FLASH_SECTOR. During saving I was getting a hardfault. The problem is that function HAL_FLASH_Program() expects the address of the variable to be saved. And you send a value DATA_32[sofar]. It should be the address: &DATA_32[sofar]. Great job again 🙂
Greetings!
F.Rak
In FLASH_SECTOR read function should be some other stop condition. Your stop condition is when you find 0xffffffff value in the array where you store read data. When this array is defined as global, the momory is alocated just for given array size. So when you want to read 2 bytes then you define array for 2 elements. In memory is alocated only 2 cells. After this 2 cells, other program data exist. So when you read in flash_sector_read more then 2 bytes you will plow the memory. This function should get one more parameter that is number of variables to read. Then one if statement it works much better.
Regards,
F.Rak
yeah ofcouse we can do that. The point in writing the 0xffffffff was that it will read the data of unknown length. But if you already know the length, then it should be easy just like you said.
When I write to the Flash I get memory protection and page alignment errors
memory protection might be turned on. Read your reference manual on how to remove it
Hi Sir.
How to find start page address ? In datasheet show page 127 address. I want to know another start page address.
They all are 1Kb in size. Just multiply 1024 to find the address.
For eg- 4*1024 = 4096 (0x1000) is the start address of page 4
127 *1024 = 130048 (0x1FC00) is the start address of page 127
Oh… Thanks. May I dump.
ex- 111*1024=113664(0x1bc00) right?
Thanks again.
yes. Make sure your flash size is 128 KB. Some bluepills have 64 KB
I copy your library and your code. Then string flash in 0x1FC00 that my bluepills have 128KB right. I plan to make my custom pcb with STM32F103C8T6 chip on it for prototype product. I think to be sure my code is write on it have 64KB for safe my product. Many THANKS.
I’m using Black Pill when i write to memory address it write and read quite well. But if i write in a loop for example i want to write to 0x08000400 and 0x08000400 the last written address is only stored in flash others are not stored why it’s happening? It’s urgent. Thank you
i didn’t understand the issue properly.. you have mentioned the same address twice in your comment
I’m sorry for my bad explanation here is the sample code..
for (int i = 0; i <= 5; i ++){ if(i == 0){ Flash_Write_Data(0x08006010, data); Flash_Read_Data(0x08006010, Rx_Data); println(Rx_Data); } if(i == 2){ Flash_Write_Data(0x08006020, data1); Flash_Read_Data(0x08006020, Rx_Data); println(Rx_Data); } if(i == 3){ Flash_Write_Data(0x08006030, data2); Flash_Read_Data(0x08006030, Rx_Data); println(Rx_Data); } if(i == 4){ Flash_Write_Data(0x08006050, data3); Flash_Read_Data(0x08006050, Rx_Data); println(Rx_Data); } HAL_Delay(2000); }After running this code data is stored only at this address 0x08006050 but during the iteration i can see that data is being stored by calling Read_Flash function and the output is this
14:10:19.482 -> Hello World
14:10:23.535 -> Hello World 1
14:10:25.564 -> Hello World 2
14:10:27.595 -> Hello World 3
But if i check the memory location using STM32CubeProgrammer i can only see last address data is stored in flash…
for (int i = 0; i <= 8; i ++){ if(i == 0){ Flash_Write_Data(0x08006010, data); } if(i == 2){ Flash_Write_Data(0x08006020, data1); } if(i == 3){ Flash_Write_Data(0x08006030, data2); } if(i == 4){ Flash_Write_Data(0x08006050, data3); } if(i ==5){ Flash_Read_Data(0x08006010, Rx_Data); println(Rx_Data); }if(i == 6){ Flash_Read_Data(0x08006020, Rx_Data); println(Rx_Data); }if(i == 7){ Flash_Read_Data(0x08006030, Rx_Data); println(Rx_Data); }if(i == 8){ Flash_Read_Data(0x08006050, Rx_Data); println(Rx_Data); } HAL_Delay(2000); }and the output is this
14:22:06.325 ->
14:22:08.329 ->
14:22:10.322 ->
14:22:12.354 -> Hello World 3
I don’t know what causing this..
you can not write data like that. You are trying to increase the address every few bytes. Check the page size of your controller in reference manual. Let’s assume it’s 1 KB. That means you can write once within that 1 KB size. If you try to write with an offset of 4 bytes, it will anyway erase the entire page and then write to that address.
I am using this concept to stm32f030f4 the value is uploaded to the flash memory address correctly and stored even though when the power is off but it does not reflect on the project kit when i reset the stm it works as per the coding logic it does not get the address value
thanks in advance
Thank you sir.
Hi,
i am using stm32H753 it has 2 memory banks BANK1 & BANK2 with 7 sectors each, and its a cortex-m7 controller,
i tried to use our program.it is not working
I checked the reference manual. Looks like there is a new memory system there. I need your project in order to modify it according to BANK type distribution. Contact me on that telegram group linked on the top right corner of website, or send a mail
Hi, I am using STM32H753 and i have same problem. How can i fix the problem? Can you help me please.
I will release an update for H7 series in a day or 2
Have you released the update for H7 series board? If yes, please share the link
Check the page again. It’s on the top
Thanks for the update. When i used the code for H7 series i got below error:
In function ‘Flash_Write_Data’:
../Drivers/STM32H7xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:425:39: error: ‘FLASH_VOLTAGE_RANGE_3’ undeclared (first use in this function);
I am using STM32H7A3 Nucleo board. I could not find out a definition for FLASH_VOLTAGE_RANGE_3 in my code. Please help me..
Try to comment out that line, and check.
Also make sure that the Sectors and Banks are defined properly in the flash_sector_h7.c file
Flash_Page.c file is written by you. Or It is in built HAL library file?
I wrote it, but took the reference from the examples provided by ST
Hello sir,
Iam using STM32L073Rz microcontrolller for flashing the data. But once we write the data in Particular address like 0X0802F000 iam not able to modify the string or numbers in the same address but we can flash another string in 0X0802F020 address. Please explain how to erase the previous flash data.
Iam trying to take external button as input after every press count value will be incremented and i am expecting to store the count value at any one address like 0X0802F000 after every increment count value stores at same address.
When use the board after power off also, count will be incremented from last value and it should be displayed on LCD or UART . Is it possible to do like that in Flash Programming.
I changed the GetPage function like this for STM32L073Rz is it correct
static uint32_t GetPage(uint32_t Address)
{
for (int indx=0; indx<512; indx++)
{
if((Address = (0x08000000 + 128*indx)))
{
return (0x08000000 + 128*indx);
}
}
return -1;
}
Please help to resolve the issue.
no it’s not correct. There is a lot confusion about the memory of the device that you have.
can u confirm the flash memory detail. does it have 1536 pages with each page being 128 bytes in size?
Yes sir,
Please verify in STM32L073RZ Referance Manual page no. 68/1034
RM0367 Reference manual
Hi there,
Is Bluepill board 64kb flash memory?
How do you use 128kb pages?
There is some confusion about 64 KB or 128 KB. But you can see in the video that it definitely uses the 128th page to write data, so I can say that it does have 128 KB of flash memory
Thanks for the reply and there is a confusion yes. But I thought it’s 64kb because it says 64kb in STM32CUBE IDE memory section on right bottom.