2017-11-22 06:37 AM
Hi, I rebuilded stm32f746g-discovery demonstration whit IAR. But it has the linker error:
Error[Lp011]: section palcement failed
Unable to allocate space section/block whit a total estimated minimum size of 0x5452bytes(max align 0x4) in....
What can I do?
Tanks.
Solved! Go to Solution.
2017-11-22 04:59 PM
I'm not an IAR user, but it is likely complaining that it doesn't have an algorithm for programming an external memory (option for many different types of memory, with board unique wiring), only for the internal memory standard to all of the F7 parts,
The graphic image data will not fit within the internal memory, so the linker places it in an external region. The debugger doesn't support programming that memory and complains. You will need to create a .HEX file from the project, and then use the ST-LINK Utilities to program the board, you'll need to select the 'External Loader' supporting your board.
2017-11-22 10:31 PM
Tanks a lot about your answer.
I will try it.
2017-11-23 06:30 AM
It works well, tankyou very much