Increase file upload speed to flash memory
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2025-04-06 10:32 PM
I want to load 320 megabytes of data into flash memory quickly.
I want to write a code in stm32cubeide.
for example, can a code block be created by defining a buffer and using crc?
can anything be done using the stm32 processor?
- Labels:
-
Bootloader
-
Flash
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2025-04-06 10:40 PM
I felt the need to make a correction. not to any stm32's flash memory but to the normal flash 3.0 memory
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2025-04-07 2:26 AM - edited ‎2025-04-07 2:27 AM
@JamesMoriarty wrote:I felt the need to make a correction. not to any stm32's flash memory but to the normal flash 3.0 memory
What "flash 3.0 memory", exactly - part number? datasheet?
How is it connected to the STM32?
What STM32?
Where is the data coming from?
What, exactly, is the specification for "quickly"?
How to write your question to maximize your chances to find a solution.
@JamesMoriarty wrote:can a code block be created by defining a buffer and using crc?
No, simply defining a buffer will not magically create any code.
You will have to write the code which:
- receives the data from whatever is sending it;
- writes the data to your Flash
Most likely, this will involve the use of 1 or more buffers.
You might also choose to include a CRC (or other error check)
A complex system designed from scratch never works and cannot be patched up to make it work.
