Question
Why STM32CubeIDE and STM32CubProgrammer generated different hex files size
STM32CubeIDE generates the hex file from elf file using below command.
arm-none-eabi-objcopy -O ihex ${ProjName}.elf ${ProjName}.hexBut when i use the STM32CubeProgrammer, it generates the hex file which is smaller than that of STM32CubeIDE hex generate file.
I wonder what arguments are used in "arm-none-eabi-objcopy" to match the hex file that generated by STM32CubeProgrammer.
