Forum: System Workbench for STM32

Re: Hex generating

I found the answer on my own:
Need to open project properties -> C/C++ Build -> Settings.
On Build Steps tab there’s a post-build steps.
Need to add this to the end or middle:

&& arm-none-eabi-objcopy -O ihex “${BuildArtifactFileBaseName}.elf” “${BuildArtifactFileBaseName}.hex” &&

&& is a separator.