2023-06-09 03:07 AM
What to do if I do not want to load my images to QSPI flash every time I upload the code?
Solved! Go to Solution.
2023-06-09 06:25 AM
Probably add it to your .noload section
2023-06-09 06:25 AM
Probably add it to your .noload section
2023-06-09 07:39 AM
Hello
Hmm if you want to remove ext_flash section, you can use arm-none-eabi-objcopy- command.
like:
arm-none-eabi-objcopy.exe --remove-section=ExtFlashSection "yourFilename.elf" "IntFlash.elf"
and place this to the post-build command.
2023-06-09 09:33 PM
I just want that every time don't upload all bitmaps images to my QSPI because it takes about 2-3 min. Maybe there is simple way to comment something in code and don't upload bitmaps. And when I need to renew my bitmaps I could do it in simple way :D