cancel
Showing results for 
Search instead for 
Did you mean: 

Increase file upload speed to flash memory

JamesMoriarty
Associate II

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?

2 REPLIES 2
JamesMoriarty
Associate II

I felt the need to make a correction. not to any stm32's flash memory but to the normal flash 3.0 memory


@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:

  1. receives the data from whatever is sending it;
  2. 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)